From: Kuninori Morimoto kuninori.morimoto.gx@renesas.com
codec driver and component driver has duplicated .probe/.remove functions, and codec side is just relayed it. This was quick-hack, but no longer needed. This patch uses component .probe/.remove
Signed-off-by: Kuninori Morimoto kuninori.morimoto.gx@renesas.com --- sound/soc/codecs/cs53l30.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c index e244e08..c87f92a 100644 --- a/sound/soc/codecs/cs53l30.c +++ b/sound/soc/codecs/cs53l30.c @@ -877,8 +877,9 @@ static struct snd_soc_dai_driver cs53l30_dai = { .symmetric_rates = 1, };
-static int cs53l30_codec_probe(struct snd_soc_codec *codec) +static int cs53l30_codec_probe(struct snd_soc_component *component) { + struct snd_soc_codec *codec = snd_soc_component_to_codec(component); struct cs53l30_private *priv = snd_soc_codec_get_drvdata(codec); struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
@@ -893,11 +894,11 @@ static int cs53l30_codec_probe(struct snd_soc_codec *codec) }
static struct snd_soc_codec_driver cs53l30_driver = { - .probe = cs53l30_codec_probe, .set_bias_level = cs53l30_set_bias_level, .idle_bias_off = true,
.component_driver = { + .probe = cs53l30_codec_probe, .controls = cs53l30_snd_controls, .num_controls = ARRAY_SIZE(cs53l30_snd_controls), .dapm_widgets = cs53l30_dapm_widgets,