diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-05-05 14:19:52 +0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-05-11 18:56:17 +0400 |
commit | d427c77eb2484c37d76b8e157e2b0b82c9b03062 (patch) | |
tree | 775981f03002f08406285ac79cd52384c30bbd8e /sound | |
parent | 458a4fabf185d90234225d7e05d81188b4dad9f1 (diff) | |
download | linux-d427c77eb2484c37d76b8e157e2b0b82c9b03062.tar.xz |
[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 <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/hda_codec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index c12bc4e8840f..56c26e7ccdf1 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) |