diff options
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index dd005ed89f0b..addcb2a0ae66 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c | |||
@@ -2127,6 +2127,13 @@ static int patch_stac922x(struct hda_codec *codec) | |||
2127 | 2127 | ||
2128 | codec->patch_ops = stac92xx_patch_ops; | 2128 | codec->patch_ops = stac92xx_patch_ops; |
2129 | 2129 | ||
2130 | /* Fix Mux capture level; max to 2 */ | ||
2131 | snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT, | ||
2132 | (0 << AC_AMPCAP_OFFSET_SHIFT) | | ||
2133 | (2 << AC_AMPCAP_NUM_STEPS_SHIFT) | | ||
2134 | (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) | | ||
2135 | (0 << AC_AMPCAP_MUTE_SHIFT)); | ||
2136 | |||
2130 | return 0; | 2137 | return 0; |
2131 | } | 2138 | } |
2132 | 2139 | ||