[ALSA] hda-codec - Fix a typo
authorTakashi Iwai <tiwai@suse.de>
Sat, 5 May 2007 10:19:52 +0000 (12:19 +0200)
committerJaroslav Kysela <perex@suse.cz>
Fri, 11 May 2007 14:56:17 +0000 (16:56 +0200)
The AMP mute bit is bit 7.  No real influence since no one uses this
definition yet, though...

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
sound/pci/hda/hda_codec.h

index c12bc4e8840f04d0b7443646485d1e641f8b0430..56c26e7ccdf118618281b95f81578516437fa869 100644 (file)
@@ -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)