ASoC: switch over to use snd_soc_register_component() on sh4 hac
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
cd9003a200
commit
73d86d9808
1 changed files with 7 additions and 3 deletions
|
@ -310,15 +310,19 @@ static struct snd_soc_dai_driver sh4_hac_dai[] = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct snd_soc_component_driver sh4_hac_component = {
|
||||||
|
.name = "sh4-hac",
|
||||||
|
};
|
||||||
|
|
||||||
static int hac_soc_platform_probe(struct platform_device *pdev)
|
static int hac_soc_platform_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
return snd_soc_register_dais(&pdev->dev, sh4_hac_dai,
|
return snd_soc_register_component(&pdev->dev, &sh4_hac_component,
|
||||||
ARRAY_SIZE(sh4_hac_dai));
|
sh4_hac_dai, ARRAY_SIZE(sh4_hac_dai));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hac_soc_platform_remove(struct platform_device *pdev)
|
static int hac_soc_platform_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(sh4_hac_dai));
|
snd_soc_unregister_component(&pdev->dev);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue