projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
458a4fa
)
[ALSA] hda-codec - Fix a typo
author
Takashi Iwai
<tiwai@suse.de>
Sat, 5 May 2007 10:19:52 +0000
(12:19 +0200)
committer
Jaroslav 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
patch
|
blob
|
history
diff --git
a/sound/pci/hda/hda_codec.h
b/sound/pci/hda/hda_codec.h
index c12bc4e8840f04d0b7443646485d1e641f8b0430..56c26e7ccdf118618281b95f81578516437fa869 100644
(file)
--- 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)