Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283968
b: refs/heads/master
c: ac1e898
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Dec 17, 2011
1 parent d8ff424 commit b5894a9
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5eb2c3d9273ae63d6b347cde38fe15bda8be1361
refs/heads/master: ac1e89860a89c9d91174bf5439689bba2e4f83bb
6 changes: 6 additions & 0 deletions trunk/arch/arm/mach-pxa/stargate2.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,10 +593,16 @@ static struct pxa2xx_udc_mach_info imote2_udc_info __initdata = {
.udc_command = sg2_udc_command,
};

static struct platform_device imote2_audio_device = {
.name = "imote2-audio",
.id = -1,
};

static struct platform_device *imote2_devices[] = {
&stargate2_flash_device,
&imote2_leds,
&sht15,
&imote2_audio_device,
};

static void __init imote2_init(void)
Expand Down
41 changes: 24 additions & 17 deletions trunk/sound/soc/pxa/imote2.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,39 +70,46 @@ static struct snd_soc_dai_link imote2_dai = {
.ops = &imote2_asoc_ops,
};

static struct snd_soc_card snd_soc_imote2 = {
static struct snd_soc_card imote2 = {
.name = "Imote2",
.dai_link = &imote2_dai,
.num_links = 1,
};

static struct platform_device *imote2_snd_device;

static int __init imote2_asoc_init(void)
static int __devinit imote2_probe(struct platform_device *pdev)
{
struct snd_soc_card *card = &imote2;
int ret;

if (!machine_is_intelmote2())
return -ENODEV;
imote2_snd_device = platform_device_alloc("soc-audio", -1);
if (!imote2_snd_device)
return -ENOMEM;
card->dev = &pdev->dev;

platform_set_drvdata(imote2_snd_device, &snd_soc_imote2);
ret = platform_device_add(imote2_snd_device);
ret = snd_soc_register_card(card);
if (ret)
platform_device_put(imote2_snd_device);

dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
ret);
return ret;
}
module_init(imote2_asoc_init);

static void __exit imote2_asoc_exit(void)
static int __devexit imote2_remove(struct platform_device *pdev)
{
platform_device_unregister(imote2_snd_device);
struct snd_soc_card *card = platform_get_drvdata(pdev);

snd_soc_unregister_card(card);
return 0;
}
module_exit(imote2_asoc_exit);

static struct platform_driver imote2_driver = {
.driver = {
.name = "imote2-audio",
.owner = THIS_MODULE,
},
.probe = imote2_probe,
.remove = __devexit_p(imote2_remove),
};

module_platform_driver(imote2_driver);

MODULE_AUTHOR("Jonathan Cameron");
MODULE_DESCRIPTION("ALSA SoC Imote 2");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:imote2-audio");

0 comments on commit b5894a9

Please sign in to comment.