aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJyri Sarha <jsarha@ti.com>2014-03-13 12:22:35 -0400
committerMark Brown <broonie@linaro.org>2014-03-13 13:32:05 -0400
commitbc236fa7301c6ca0ccf5470a964842d1a60e786f (patch)
treee87f5af8c96b2c5d731cb2bdc96fa56134d9b003 /sound
parenta2d57678ce98534a87de42e55e599cae730d17ca (diff)
ASoC: tlv320aic31xx: Remove snd_soc_codec_set_cache_io() call
Remove snd_soc_codec_set_cache_io(codec, 8, 8, SND_SOC_REGMAP) call and codec->control_data = aic31xx->regmap assignment since that already done by core. Signed-off-by: Jyri Sarha <jsarha@ti.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/tlv320aic31xx.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c
index bdc0d8bd47b4..dcdc5751048f 100644
--- a/sound/soc/codecs/tlv320aic31xx.c
+++ b/sound/soc/codecs/tlv320aic31xx.c
@@ -1049,18 +1049,9 @@ static int aic31xx_codec_probe(struct snd_soc_codec *codec)
1049 dev_dbg(aic31xx->dev, "## %s\n", __func__); 1049 dev_dbg(aic31xx->dev, "## %s\n", __func__);
1050 1050
1051 aic31xx = snd_soc_codec_get_drvdata(codec); 1051 aic31xx = snd_soc_codec_get_drvdata(codec);
1052 codec->control_data = aic31xx->regmap;
1053 1052
1054 aic31xx->codec = codec; 1053 aic31xx->codec = codec;
1055 1054
1056 ret = snd_soc_codec_set_cache_io(codec, 8, 8, SND_SOC_REGMAP);
1057
1058 if (ret != 0) {
1059 dev_err(codec->dev, "snd_soc_codec_set_cache_io failed %d\n",
1060 ret);
1061 return ret;
1062 }
1063
1064 for (i = 0; i < ARRAY_SIZE(aic31xx->supplies); i++) { 1055 for (i = 0; i < ARRAY_SIZE(aic31xx->supplies); i++) {
1065 aic31xx->disable_nb[i].nb.notifier_call = 1056 aic31xx->disable_nb[i].nb.notifier_call =
1066 aic31xx_regulator_event; 1057 aic31xx_regulator_event;