Commit d427c77e authored by Takashi Iwai's avatar Takashi Iwai Committed by Jaroslav Kysela

[ALSA] hda-codec - Fix a typo

The AMP mute bit is bit 7.  No real influence since no one uses this
definition yet, though...
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent 458a4fab
......@@ -233,7 +233,7 @@ enum {
*/
/* Amp gain/mute */
#define AC_AMP_MUTE (1<<8)
#define AC_AMP_MUTE (1<<7)
#define AC_AMP_GAIN (0x7f)
#define AC_AMP_GET_INDEX (0xf<<0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment