mirror of https://gitee.com/openkylin/linux.git
ASoC: max9867: fix ADC level control
Fix swapped channels in ADC level control. Signed-off-by: Pavel Dobias <dobias@2n.cz> Link: https://lore.kernel.org/r/20200520071904.15801-1-dobias@2n.cz Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8ba4dc3cff
commit
53a58bf96b
|
@ -58,7 +58,7 @@ static const struct snd_kcontrol_new max9867_snd_controls[] = {
|
|||
max9867_dac_tlv),
|
||||
SOC_SINGLE_TLV("Digital Boost Playback Volume", MAX9867_DACLEVEL, 4, 3, 0,
|
||||
max9867_dacboost_tlv),
|
||||
SOC_DOUBLE_TLV("Digital Capture Volume", MAX9867_ADCLEVEL, 0, 4, 15, 1,
|
||||
SOC_DOUBLE_TLV("Digital Capture Volume", MAX9867_ADCLEVEL, 4, 0, 15, 1,
|
||||
max9867_adc_tlv),
|
||||
SOC_ENUM("Speaker Mode", max9867_spkmode),
|
||||
SOC_SINGLE("Volume Smoothing Switch", MAX9867_MODECONFIG, 6, 1, 0),
|
||||
|
|
Loading…
Reference in New Issue