diff options
Diffstat (limited to 'sound/soc/samsung/bells.c')
-rw-r--r-- | sound/soc/samsung/bells.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/samsung/bells.c b/sound/soc/samsung/bells.c index 01c1c5a2d321..ceed466af9ff 100644 --- a/sound/soc/samsung/bells.c +++ b/sound/soc/samsung/bells.c | |||
@@ -412,7 +412,7 @@ static struct snd_soc_card bells_cards[] = { | |||
412 | }; | 412 | }; |
413 | 413 | ||
414 | 414 | ||
415 | static __devinit int bells_probe(struct platform_device *pdev) | 415 | static int bells_probe(struct platform_device *pdev) |
416 | { | 416 | { |
417 | int ret; | 417 | int ret; |
418 | 418 | ||
@@ -429,7 +429,7 @@ static __devinit int bells_probe(struct platform_device *pdev) | |||
429 | return 0; | 429 | return 0; |
430 | } | 430 | } |
431 | 431 | ||
432 | static int __devexit bells_remove(struct platform_device *pdev) | 432 | static int bells_remove(struct platform_device *pdev) |
433 | { | 433 | { |
434 | snd_soc_unregister_card(&bells_cards[pdev->id]); | 434 | snd_soc_unregister_card(&bells_cards[pdev->id]); |
435 | 435 | ||
@@ -443,7 +443,7 @@ static struct platform_driver bells_driver = { | |||
443 | .pm = &snd_soc_pm_ops, | 443 | .pm = &snd_soc_pm_ops, |
444 | }, | 444 | }, |
445 | .probe = bells_probe, | 445 | .probe = bells_probe, |
446 | .remove = __devexit_p(bells_remove), | 446 | .remove = bells_remove, |
447 | }; | 447 | }; |
448 | 448 | ||
449 | module_platform_driver(bells_driver); | 449 | module_platform_driver(bells_driver); |