Skip to content

Commit

Permalink
ASoC: simone: convert to use snd_soc_register_card()
Browse files Browse the repository at this point in the history
Current method for machine driver to register with the ASoC core is to
use snd_soc_register_card() instead of creating a "soc-audio" platform device.

In addition we use platform_device_register_simple() to create a platform
device for the codec. This function will handle putting and deleting the
device automatically which simplifies the error handling in the machine
driver.

Signed-off-by: Mika Westerberg <mika.westerberg@iki.fi>
Reviewed-by: Ryan Mallon <rmallon@gmail.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Mika Westerberg authored and Mark Brown committed Sep 16, 2011
1 parent 9306816 commit 5a0a03c
Showing 1 changed file with 36 additions and 28 deletions.
64 changes: 36 additions & 28 deletions sound/soc/ep93xx/simone.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,53 +39,61 @@ static struct snd_soc_card snd_soc_simone = {
};

static struct platform_device *simone_snd_ac97_device;
static struct platform_device *simone_snd_device;

static int __init simone_init(void)
static int __devinit simone_probe(struct platform_device *pdev)
{
struct snd_soc_card *card = &snd_soc_simone;
int ret;

if (!machine_is_sim_one())
return -ENODEV;

simone_snd_ac97_device = platform_device_alloc("ac97-codec", -1);
if (!simone_snd_ac97_device)
return -ENOMEM;
simone_snd_ac97_device = platform_device_register_simple("ac97-codec",
-1, NULL, 0);
if (IS_ERR(simone_snd_ac97_device))
return PTR_ERR(simone_snd_ac97_device);

ret = platform_device_add(simone_snd_ac97_device);
if (ret)
goto fail1;
card->dev = &pdev->dev;

simone_snd_device = platform_device_alloc("soc-audio", -1);
if (!simone_snd_device) {
ret = -ENOMEM;
goto fail2;
ret = snd_soc_register_card(card);
if (ret) {
dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
ret);
platform_device_unregister(simone_snd_ac97_device);
}

platform_set_drvdata(simone_snd_device, &snd_soc_simone);
ret = platform_device_add(simone_snd_device);
if (ret)
goto fail3;
return ret;
}

static int __devexit simone_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);

snd_soc_unregister_card(card);
platform_device_unregister(simone_snd_ac97_device);

return 0;
}

fail3:
platform_device_put(simone_snd_device);
fail2:
platform_device_del(simone_snd_ac97_device);
fail1:
platform_device_put(simone_snd_ac97_device);
return ret;
static struct platform_driver simone_driver = {
.driver = {
.name = "simone-audio",
.owner = THIS_MODULE,
},
.probe = simone_probe,
.remove = __devexit_p(simone_remove),
};

static int __init simone_init(void)
{
return platform_driver_register(&simone_driver);
}
module_init(simone_init);

static void __exit simone_exit(void)
{
platform_device_unregister(simone_snd_device);
platform_device_unregister(simone_snd_ac97_device);
platform_driver_unregister(&simone_driver);
}
module_exit(simone_exit);

MODULE_DESCRIPTION("ALSA SoC Simplemachines Sim.One");
MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:simone-audio");

0 comments on commit 5a0a03c

Please sign in to comment.