Commit eab73d01 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: codec duplicated callback function goes to component on ac97



codec driver and component driver has duplicated callback functions,
and codec side functions are just copied to component side when
register timing. This was quick-hack, but no longer needed.
This patch moves these functions from codec driver to component driver.

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 637591ec
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -117,10 +117,12 @@ static struct snd_soc_codec_driver soc_codec_dev_ac97 = {
	.suspend =	ac97_soc_suspend,
	.resume =	ac97_soc_resume,

	.component_driver = {
		.dapm_widgets		= ac97_widgets,
		.num_dapm_widgets	= ARRAY_SIZE(ac97_widgets),
		.dapm_routes		= ac97_routes,
		.num_dapm_routes	= ARRAY_SIZE(ac97_routes),
	},
};

static int ac97_probe(struct platform_device *pdev)