diff options
author | Xiubo Li <Li.Xiubo@freescale.com> | 2014-03-11 12:43:21 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-11 09:59:06 +0000 |
commit | 092eba937d948a76ff55825922eff4df010f6a17 (patch) | |
tree | 9ceee6b8bb67ec90bdb1d1f4dd812e3dfba8547d /sound/soc/codecs/cq93vc.c | |
parent | 5d6be5aa6becc750c5c2aa0ef8f7209ce19aa328 (diff) | |
download | linux-092eba937d948a76ff55825922eff4df010f6a17.tar.bz2 |
ASoC: io: New signature for snd_soc_codec_set_cache_io()
Now that all users have been converted to regmap and the config.reg_bits
and config.val_bits can be setted by each user through regmap core API.
So these two params are redundant here.
Since the only control type that left is SND_SOC_REGMAP, so remove it. Drop
the control params and add struct regmap *regmap to simplify the code.
Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/codecs/cq93vc.c')
-rw-r--r-- | sound/soc/codecs/cq93vc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/codecs/cq93vc.c b/sound/soc/codecs/cq93vc.c index 43737a27d79c..1e25c7af853b 100644 --- a/sound/soc/codecs/cq93vc.c +++ b/sound/soc/codecs/cq93vc.c @@ -138,9 +138,8 @@ static int cq93vc_probe(struct snd_soc_codec *codec) struct davinci_vc *davinci_vc = codec->dev->platform_data; davinci_vc->cq93vc.codec = codec; - codec->control_data = davinci_vc->regmap; - snd_soc_codec_set_cache_io(codec, 32, 32, SND_SOC_REGMAP); + snd_soc_codec_set_cache_io(codec, davinci_vc->regmap); /* Off, with power on */ cq93vc_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |