mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
ALSA: hda - Fix the previous sanity check in make_codec_cmd()
The newly added sanity-check for a codec verb can be better written with logical ORs. Also, the parameter can be more than 8bit. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
6430aeeb30
commit
82e1b804b0
1 changed files with 2 additions and 2 deletions
|
@ -150,8 +150,8 @@ make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
|
|||
{
|
||||
u32 val;
|
||||
|
||||
if ((codec->addr & ~0xf) | (direct & ~1) | (nid & ~0x7f) |
|
||||
(verb & ~0xfff) | (parm & ~0xff)) {
|
||||
if ((codec->addr & ~0xf) || (direct & ~1) || (nid & ~0x7f) ||
|
||||
(verb & ~0xfff) || (parm & ~0xffff)) {
|
||||
printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x:%x\n",
|
||||
codec->addr, direct, nid, verb, parm);
|
||||
return ~0;
|
||||
|
|
Loading…
Reference in a new issue