aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra/tegra_wm8903.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/tegra/tegra_wm8903.c')
-rw-r--r--sound/soc/tegra/tegra_wm8903.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/tegra/tegra_wm8903.c b/sound/soc/tegra/tegra_wm8903.c
index cee13b7bfb94..bbd79bf56303 100644
--- a/sound/soc/tegra/tegra_wm8903.c
+++ b/sound/soc/tegra/tegra_wm8903.c
@@ -252,7 +252,7 @@ static struct snd_soc_card snd_soc_tegra_wm8903 = {
252 .fully_routed = true, 252 .fully_routed = true,
253}; 253};
254 254
255static __devinit int tegra_wm8903_driver_probe(struct platform_device *pdev) 255static int tegra_wm8903_driver_probe(struct platform_device *pdev)
256{ 256{
257 struct device_node *np = pdev->dev.of_node; 257 struct device_node *np = pdev->dev.of_node;
258 struct snd_soc_card *card = &snd_soc_tegra_wm8903; 258 struct snd_soc_card *card = &snd_soc_tegra_wm8903;
@@ -402,7 +402,7 @@ err:
402 return ret; 402 return ret;
403} 403}
404 404
405static int __devexit tegra_wm8903_driver_remove(struct platform_device *pdev) 405static int tegra_wm8903_driver_remove(struct platform_device *pdev)
406{ 406{
407 struct snd_soc_card *card = platform_get_drvdata(pdev); 407 struct snd_soc_card *card = platform_get_drvdata(pdev);
408 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card); 408 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
@@ -417,7 +417,7 @@ static int __devexit tegra_wm8903_driver_remove(struct platform_device *pdev)
417 return 0; 417 return 0;
418} 418}
419 419
420static const struct of_device_id tegra_wm8903_of_match[] __devinitconst = { 420static const struct of_device_id tegra_wm8903_of_match[] = {
421 { .compatible = "nvidia,tegra-audio-wm8903", }, 421 { .compatible = "nvidia,tegra-audio-wm8903", },
422 {}, 422 {},
423}; 423};
@@ -430,7 +430,7 @@ static struct platform_driver tegra_wm8903_driver = {
430 .of_match_table = tegra_wm8903_of_match, 430 .of_match_table = tegra_wm8903_of_match,
431 }, 431 },
432 .probe = tegra_wm8903_driver_probe, 432 .probe = tegra_wm8903_driver_probe,
433 .remove = __devexit_p(tegra_wm8903_driver_remove), 433 .remove = tegra_wm8903_driver_remove,
434}; 434};
435module_platform_driver(tegra_wm8903_driver); 435module_platform_driver(tegra_wm8903_driver);
436 436