mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-11 03:48:00 +00:00
ASoC: switch over to use snd_soc_register_component() on tegra20 ac97
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
094e1a3d7d
commit
359e2cb749
@ -248,6 +248,10 @@ static struct snd_soc_dai_driver tegra20_ac97_dai = {
|
||||
.ops = &tegra20_ac97_dai_ops,
|
||||
};
|
||||
|
||||
static const struct snd_soc_component_driver tegra20_ac97_component = {
|
||||
.name = DRV_NAME,
|
||||
};
|
||||
|
||||
static bool tegra20_ac97_wr_rd_reg(struct device *dev, unsigned int reg)
|
||||
{
|
||||
switch (reg) {
|
||||
@ -398,7 +402,8 @@ static int tegra20_ac97_platform_probe(struct platform_device *pdev)
|
||||
ac97->playback_dma_data.width = 32;
|
||||
ac97->playback_dma_data.req_sel = of_dma[1];
|
||||
|
||||
ret = snd_soc_register_dais(&pdev->dev, &tegra20_ac97_dai, 1);
|
||||
ret = snd_soc_register_component(&pdev->dev, &tegra20_ac97_component,
|
||||
&tegra20_ac97_dai, 1);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "Could not register DAI: %d\n", ret);
|
||||
ret = -ENOMEM;
|
||||
@ -408,7 +413,7 @@ static int tegra20_ac97_platform_probe(struct platform_device *pdev)
|
||||
ret = tegra_pcm_platform_register(&pdev->dev);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "Could not register PCM: %d\n", ret);
|
||||
goto err_unregister_dai;
|
||||
goto err_unregister_component;
|
||||
}
|
||||
|
||||
ret = tegra_asoc_utils_init(&ac97->util_data, &pdev->dev);
|
||||
@ -434,8 +439,8 @@ err_asoc_utils_fini:
|
||||
tegra_asoc_utils_fini(&ac97->util_data);
|
||||
err_unregister_pcm:
|
||||
tegra_pcm_platform_unregister(&pdev->dev);
|
||||
err_unregister_dai:
|
||||
snd_soc_unregister_dai(&pdev->dev);
|
||||
err_unregister_component:
|
||||
snd_soc_unregister_component(&pdev->dev);
|
||||
err_clk_put:
|
||||
clk_put(ac97->clk_ac97);
|
||||
err:
|
||||
@ -447,7 +452,7 @@ static int tegra20_ac97_platform_remove(struct platform_device *pdev)
|
||||
struct tegra20_ac97 *ac97 = dev_get_drvdata(&pdev->dev);
|
||||
|
||||
tegra_pcm_platform_unregister(&pdev->dev);
|
||||
snd_soc_unregister_dai(&pdev->dev);
|
||||
snd_soc_unregister_component(&pdev->dev);
|
||||
|
||||
tegra_asoc_utils_fini(&ac97->util_data);
|
||||
|
||||
|
@ -55,7 +55,7 @@ static int tegra_wm9712_init(struct snd_soc_pcm_runtime *rtd)
|
||||
static struct snd_soc_dai_link tegra_wm9712_dai = {
|
||||
.name = "AC97 HiFi",
|
||||
.stream_name = "AC97 HiFi",
|
||||
.cpu_dai_name = "tegra-ac97-pcm",
|
||||
.cpu_dai_name = "tegra20-ac97",
|
||||
.codec_dai_name = "wm9712-hifi",
|
||||
.codec_name = "wm9712-codec",
|
||||
.init = tegra_wm9712_init,
|
||||
|
Loading…
x
Reference in New Issue
Block a user