Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -233,7 +233,7 @@ enum {
 */
 */


/* Amp gain/mute */
/* Amp gain/mute */
#define AC_AMP_MUTE			(1<<8)
#define AC_AMP_MUTE			(1<<7)
#define AC_AMP_GAIN			(0x7f)
#define AC_AMP_GAIN			(0x7f)
#define AC_AMP_GET_INDEX		(0xf<<0)
#define AC_AMP_GET_INDEX		(0xf<<0)