diff options
Diffstat (limited to 'sound/soc/codecs/wm5102.c')
-rw-r--r-- | sound/soc/codecs/wm5102.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/wm5102.c b/sound/soc/codecs/wm5102.c index 27f7e38e7eca..688ade080589 100644 --- a/sound/soc/codecs/wm5102.c +++ b/sound/soc/codecs/wm5102.c | |||
@@ -1475,7 +1475,7 @@ static struct snd_soc_codec_driver soc_codec_dev_wm5102 = { | |||
1475 | .num_dapm_routes = ARRAY_SIZE(wm5102_dapm_routes), | 1475 | .num_dapm_routes = ARRAY_SIZE(wm5102_dapm_routes), |
1476 | }; | 1476 | }; |
1477 | 1477 | ||
1478 | static int __devinit wm5102_probe(struct platform_device *pdev) | 1478 | static int wm5102_probe(struct platform_device *pdev) |
1479 | { | 1479 | { |
1480 | struct arizona *arizona = dev_get_drvdata(pdev->dev.parent); | 1480 | struct arizona *arizona = dev_get_drvdata(pdev->dev.parent); |
1481 | struct wm5102_priv *wm5102; | 1481 | struct wm5102_priv *wm5102; |
@@ -1527,7 +1527,7 @@ static int __devinit wm5102_probe(struct platform_device *pdev) | |||
1527 | wm5102_dai, ARRAY_SIZE(wm5102_dai)); | 1527 | wm5102_dai, ARRAY_SIZE(wm5102_dai)); |
1528 | } | 1528 | } |
1529 | 1529 | ||
1530 | static int __devexit wm5102_remove(struct platform_device *pdev) | 1530 | static int wm5102_remove(struct platform_device *pdev) |
1531 | { | 1531 | { |
1532 | snd_soc_unregister_codec(&pdev->dev); | 1532 | snd_soc_unregister_codec(&pdev->dev); |
1533 | pm_runtime_disable(&pdev->dev); | 1533 | pm_runtime_disable(&pdev->dev); |
@@ -1541,7 +1541,7 @@ static struct platform_driver wm5102_codec_driver = { | |||
1541 | .owner = THIS_MODULE, | 1541 | .owner = THIS_MODULE, |
1542 | }, | 1542 | }, |
1543 | .probe = wm5102_probe, | 1543 | .probe = wm5102_probe, |
1544 | .remove = __devexit_p(wm5102_remove), | 1544 | .remove = wm5102_remove, |
1545 | }; | 1545 | }; |
1546 | 1546 | ||
1547 | module_platform_driver(wm5102_codec_driver); | 1547 | module_platform_driver(wm5102_codec_driver); |