Commit 2445ecc3 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

ASoC: pxa: Convert poodle to use snd_soc_register_card()

Use snd_soc_register_card() instead of creating a "soc-audio" platform device.
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Acked-by: default avatarHaojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 1b39bf34
...@@ -158,6 +158,11 @@ static struct scoop_pcmcia_config poodle_pcmcia_config = { ...@@ -158,6 +158,11 @@ static struct scoop_pcmcia_config poodle_pcmcia_config = {
EXPORT_SYMBOL(poodle_scoop_device); EXPORT_SYMBOL(poodle_scoop_device);
static struct platform_device poodle_audio_device = {
.name = "poodle-audio",
.id = -1,
};
/* LoCoMo device */ /* LoCoMo device */
static struct resource locomo_resources[] = { static struct resource locomo_resources[] = {
[0] = { [0] = {
...@@ -407,6 +412,7 @@ static struct platform_device sharpsl_rom_device = { ...@@ -407,6 +412,7 @@ static struct platform_device sharpsl_rom_device = {
static struct platform_device *devices[] __initdata = { static struct platform_device *devices[] __initdata = {
&poodle_locomo_device, &poodle_locomo_device,
&poodle_scoop_device, &poodle_scoop_device,
&poodle_audio_device,
&sharpsl_nand_device, &sharpsl_nand_device,
&sharpsl_rom_device, &sharpsl_rom_device,
}; };
......
...@@ -281,22 +281,18 @@ static struct snd_soc_dai_link poodle_dai = { ...@@ -281,22 +281,18 @@ static struct snd_soc_dai_link poodle_dai = {
}; };
/* poodle audio machine driver */ /* poodle audio machine driver */
static struct snd_soc_card snd_soc_poodle = { static struct snd_soc_card poodle = {
.name = "Poodle", .name = "Poodle",
.dai_link = &poodle_dai, .dai_link = &poodle_dai,
.num_links = 1, .num_links = 1,
.owner = THIS_MODULE, .owner = THIS_MODULE,
}; };
static struct platform_device *poodle_snd_device; static int __devinit poodle_probe(struct platform_device *pdev)
static int __init poodle_init(void)
{ {
struct snd_soc_card *card = &poodle;
int ret; int ret;
if (!machine_is_poodle())
return -ENODEV;
locomo_gpio_set_dir(&poodle_locomo_device.dev, locomo_gpio_set_dir(&poodle_locomo_device.dev,
POODLE_LOCOMO_GPIO_AMP_ON, 0); POODLE_LOCOMO_GPIO_AMP_ON, 0);
/* should we mute HP at startup - burning power ?*/ /* should we mute HP at startup - burning power ?*/
...@@ -305,28 +301,36 @@ static int __init poodle_init(void) ...@@ -305,28 +301,36 @@ static int __init poodle_init(void)
locomo_gpio_set_dir(&poodle_locomo_device.dev, locomo_gpio_set_dir(&poodle_locomo_device.dev,
POODLE_LOCOMO_GPIO_MUTE_R, 0); POODLE_LOCOMO_GPIO_MUTE_R, 0);
poodle_snd_device = platform_device_alloc("soc-audio", -1); card->dev = &pdev->dev;
if (!poodle_snd_device)
return -ENOMEM;
platform_set_drvdata(poodle_snd_device, &snd_soc_poodle);
ret = platform_device_add(poodle_snd_device);
ret = snd_soc_register_card(card);
if (ret) if (ret)
platform_device_put(poodle_snd_device); dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
ret);
return ret; return ret;
} }
static void __exit poodle_exit(void) static int __devexit poodle_remove(struct platform_device *pdev)
{ {
platform_device_unregister(poodle_snd_device); struct snd_soc_card *card = platform_get_drvdata(pdev);
snd_soc_unregister_card(card);
return 0;
} }
module_init(poodle_init); static struct platform_driver poodle_driver = {
module_exit(poodle_exit); .driver = {
.name = "poodle-audio",
.owner = THIS_MODULE,
},
.probe = poodle_probe,
.remove = __devexit_p(poodle_remove),
};
module_platform_driver(poodle_driver);
/* Module information */ /* Module information */
MODULE_AUTHOR("Richard Purdie"); MODULE_AUTHOR("Richard Purdie");
MODULE_DESCRIPTION("ALSA SoC Poodle"); MODULE_DESCRIPTION("ALSA SoC Poodle");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:poodle-audio");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment