aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2011-06-07 01:02:59 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-06-07 04:48:21 -0400
commit0c8e2917f2f56e9836692e1d5a12f04af00b1a5a (patch)
treed9027c9c38f1a05a276b9475d5cb508de6e410b3 /sound
parentbca6b39979dfe0b2d14a3ca35e2930f5d9c8e3f5 (diff)
ASoC: AD1836: Fix build error
Commit f97d0c6d5f94 ("ASoC: AD1836: Add input gain control for ADC2") contained a typo in the register name, causing a build error. This patch fixes it. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/ad1836.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ad1836.c b/sound/soc/codecs/ad1836.c
index 1e9a801176d5..e3a9493e3ced 100644
--- a/sound/soc/codecs/ad1836.c
+++ b/sound/soc/codecs/ad1836.c
@@ -127,7 +127,7 @@ static const struct snd_soc_dapm_route ad183x_dapm_routes[] = {
127static const DECLARE_TLV_DB_SCALE(ad1836_in_tlv, 0, 300, 0); 127static const DECLARE_TLV_DB_SCALE(ad1836_in_tlv, 0, 300, 0);
128 128
129static const struct snd_kcontrol_new ad1836_controls[] = { 129static const struct snd_kcontrol_new ad1836_controls[] = {
130 SOC_DOUBLE_TLV("ADC2 Capture Volume", AD183X_ADC_CTRL1, 3, 0, 4, 0, 130 SOC_DOUBLE_TLV("ADC2 Capture Volume", AD1836_ADC_CTRL1, 3, 0, 4, 0,
131 ad1836_in_tlv), 131 ad1836_in_tlv),
132}; 132};
133 133