From: Takashi Iwai Date: Sat, 5 May 2007 10:19:52 +0000 (+0200) Subject: [ALSA] hda-codec - Fix a typo X-Git-Tag: v2.6.22-rc1~22^2~7 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=d427c77eb2484c37d76b8e157e2b0b82c9b03062;p=~emulex%2Finfiniband.git [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: Takashi Iwai Signed-off-by: Jaroslav Kysela --- diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index c12bc4e8840..56c26e7ccdf 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h @@ -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)