Skip to content

Commit

Permalink
[ALSA] hda-codec - Fix a typo
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Takashi Iwai authored and Jaroslav Kysela committed May 11, 2007
1 parent 458a4fa commit d427c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/pci/hda/hda_codec.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit d427c77

Please sign in to comment.