diff options
Diffstat (limited to 'drivers/macintosh/windfarm_pm112.c')
-rw-r--r-- | drivers/macintosh/windfarm_pm112.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/macintosh/windfarm_pm112.c b/drivers/macintosh/windfarm_pm112.c index e0ee80700cde..35ef6e2582b8 100644 --- a/drivers/macintosh/windfarm_pm112.c +++ b/drivers/macintosh/windfarm_pm112.c | |||
@@ -656,7 +656,7 @@ static int wf_pm112_probe(struct platform_device *dev) | |||
656 | return 0; | 656 | return 0; |
657 | } | 657 | } |
658 | 658 | ||
659 | static int __devexit wf_pm112_remove(struct platform_device *dev) | 659 | static int wf_pm112_remove(struct platform_device *dev) |
660 | { | 660 | { |
661 | wf_unregister_client(&pm112_events); | 661 | wf_unregister_client(&pm112_events); |
662 | /* should release all sensors and controls */ | 662 | /* should release all sensors and controls */ |
@@ -665,7 +665,7 @@ static int __devexit wf_pm112_remove(struct platform_device *dev) | |||
665 | 665 | ||
666 | static struct platform_driver wf_pm112_driver = { | 666 | static struct platform_driver wf_pm112_driver = { |
667 | .probe = wf_pm112_probe, | 667 | .probe = wf_pm112_probe, |
668 | .remove = __devexit_p(wf_pm112_remove), | 668 | .remove = wf_pm112_remove, |
669 | .driver = { | 669 | .driver = { |
670 | .name = "windfarm", | 670 | .name = "windfarm", |
671 | .owner = THIS_MODULE, | 671 | .owner = THIS_MODULE, |