diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-11-28 01:06:44 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-12-04 12:40:19 -0500 |
commit | 4b952275d2e7c6b32671a121ea5303a467bf2a0f (patch) | |
tree | 6df61af9da40a50c2821f4241ae8709a22dca086 | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) |
ASoC: use snd_soc_component_init_regmap() on atmel-classd
To setup regmap, ALSA SoC has snd_soc_component_init_regmap() and
.get_regmap. But these are duplicated feature.
This driver is using .get_regmap and set regmap by using
dev_get_regmap(), but it is automatically done by
snd_soc_component_add_unlocked(). let's remove .get_regmap.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/atmel/atmel-classd.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sound/soc/atmel/atmel-classd.c b/sound/soc/atmel/atmel-classd.c index 8445edd06737..ebabed69f0e6 100644 --- a/sound/soc/atmel/atmel-classd.c +++ b/sound/soc/atmel/atmel-classd.c | |||
@@ -308,15 +308,9 @@ static int atmel_classd_codec_resume(struct snd_soc_codec *codec) | |||
308 | return regcache_sync(dd->regmap); | 308 | return regcache_sync(dd->regmap); |
309 | } | 309 | } |
310 | 310 | ||
311 | static struct regmap *atmel_classd_codec_get_remap(struct device *dev) | ||
312 | { | ||
313 | return dev_get_regmap(dev, NULL); | ||
314 | } | ||
315 | |||
316 | static struct snd_soc_codec_driver soc_codec_dev_classd = { | 311 | static struct snd_soc_codec_driver soc_codec_dev_classd = { |
317 | .probe = atmel_classd_codec_probe, | 312 | .probe = atmel_classd_codec_probe, |
318 | .resume = atmel_classd_codec_resume, | 313 | .resume = atmel_classd_codec_resume, |
319 | .get_regmap = atmel_classd_codec_get_remap, | ||
320 | .component_driver = { | 314 | .component_driver = { |
321 | .controls = atmel_classd_snd_controls, | 315 | .controls = atmel_classd_snd_controls, |
322 | .num_controls = ARRAY_SIZE(atmel_classd_snd_controls), | 316 | .num_controls = ARRAY_SIZE(atmel_classd_snd_controls), |