From: Mark Brown Date: Fri, 11 Jan 2013 13:32:00 +0000 (+0000) Subject: ASoC: wm5110: Correct AEC loopback mask X-Git-Tag: v3.8-rc6~9^2~4^2~4^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7d5cb4f7105e7cf12e58e6df5af0cbdb11060bca;p=karo-tx-linux.git ASoC: wm5110: Correct AEC loopback mask The generated defines in the header are pre-shifted. Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm5110.c b/sound/soc/codecs/wm5110.c index ae80c8c28536..7a090968c4f7 100644 --- a/sound/soc/codecs/wm5110.c +++ b/sound/soc/codecs/wm5110.c @@ -344,8 +344,7 @@ static const unsigned int wm5110_aec_loopback_values[] = { static const struct soc_enum wm5110_aec_loopback = SOC_VALUE_ENUM_SINGLE(ARIZONA_DAC_AEC_CONTROL_1, - ARIZONA_AEC_LOOPBACK_SRC_SHIFT, - ARIZONA_AEC_LOOPBACK_SRC_MASK, + ARIZONA_AEC_LOOPBACK_SRC_SHIFT, 0xf, ARRAY_SIZE(wm5110_aec_loopback_texts), wm5110_aec_loopback_texts, wm5110_aec_loopback_values);