aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/omap/omap-twl4030.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-12-10 03:00:45 -0500
committerTakashi Iwai <tiwai@suse.de>2012-12-10 03:00:45 -0500
commit97768a8e658605a905ba0d908d1b23b475170bed (patch)
tree0431dd9a118c138d164c263033a53502e4c01586 /sound/soc/omap/omap-twl4030.c
parent9621055fbbb190264cb6a8182b70e3f0f917d770 (diff)
parent7a79e94e973639da7bf1b8242d504f9db9e5e848 (diff)
Merge tag 'asoc-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: Updates for v3.8 Some incremental updates, nothing too exciting. The biggest block here is the __dev annotation removal stuff from Bill, everything else is the usual driver-specific stuff - a combination of fixes and development. There will be at least more more set of fixes to come but I wanted to get these out ready for the merge window to make sure Bill's stuff makes it in.
Diffstat (limited to 'sound/soc/omap/omap-twl4030.c')
-rw-r--r--sound/soc/omap/omap-twl4030.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/omap/omap-twl4030.c b/sound/soc/omap/omap-twl4030.c
index 3b97b87971f5..4541d28b5314 100644
--- a/sound/soc/omap/omap-twl4030.c
+++ b/sound/soc/omap/omap-twl4030.c
@@ -107,7 +107,7 @@ static struct snd_soc_card omap_twl4030_card = {
107 .num_links = ARRAY_SIZE(omap_twl4030_dai_links), 107 .num_links = ARRAY_SIZE(omap_twl4030_dai_links),
108}; 108};
109 109
110static __devinit int omap_twl4030_probe(struct platform_device *pdev) 110static int omap_twl4030_probe(struct platform_device *pdev)
111{ 111{
112 struct omap_tw4030_pdata *pdata = dev_get_platdata(&pdev->dev); 112 struct omap_tw4030_pdata *pdata = dev_get_platdata(&pdev->dev);
113 struct device_node *node = pdev->dev.of_node; 113 struct device_node *node = pdev->dev.of_node;
@@ -154,7 +154,7 @@ static __devinit int omap_twl4030_probe(struct platform_device *pdev)
154 return 0; 154 return 0;
155} 155}
156 156
157static int __devexit omap_twl4030_remove(struct platform_device *pdev) 157static int omap_twl4030_remove(struct platform_device *pdev)
158{ 158{
159 struct snd_soc_card *card = platform_get_drvdata(pdev); 159 struct snd_soc_card *card = platform_get_drvdata(pdev);
160 160
@@ -177,7 +177,7 @@ static struct platform_driver omap_twl4030_driver = {
177 .of_match_table = omap_twl4030_of_match, 177 .of_match_table = omap_twl4030_of_match,
178 }, 178 },
179 .probe = omap_twl4030_probe, 179 .probe = omap_twl4030_probe,
180 .remove = __devexit_p(omap_twl4030_remove), 180 .remove = omap_twl4030_remove,
181}; 181};
182 182
183module_platform_driver(omap_twl4030_driver); 183module_platform_driver(omap_twl4030_driver);