ASoC: codec duplicated callback function goes to component on adau1977
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: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
dbd33b16d6
commit
ef611e1f4a
|
@ -873,12 +873,14 @@ static struct snd_soc_codec_driver adau1977_codec_driver = {
|
|||
.set_sysclk = adau1977_set_sysclk,
|
||||
.idle_bias_off = true,
|
||||
|
||||
.component_driver = {
|
||||
.controls = adau1977_snd_controls,
|
||||
.num_controls = ARRAY_SIZE(adau1977_snd_controls),
|
||||
.dapm_widgets = adau1977_dapm_widgets,
|
||||
.num_dapm_widgets = ARRAY_SIZE(adau1977_dapm_widgets),
|
||||
.dapm_routes = adau1977_dapm_routes,
|
||||
.num_dapm_routes = ARRAY_SIZE(adau1977_dapm_routes),
|
||||
},
|
||||
};
|
||||
|
||||
static int adau1977_setup_micbias(struct adau1977 *adau1977)
|
||||
|
|
Loading…
Reference in New Issue