diff options
-rw-r--r-- | drivers/leds/leds-atmel-pwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-atmel-pwm.c b/drivers/leds/leds-atmel-pwm.c index 386773532d95..8a39c5b20f76 100644 --- a/drivers/leds/leds-atmel-pwm.c +++ b/drivers/leds/leds-atmel-pwm.c | |||
@@ -113,7 +113,7 @@ err: | |||
113 | return status; | 113 | return status; |
114 | } | 114 | } |
115 | 115 | ||
116 | static int __exit pwmled_remove(struct platform_device *pdev) | 116 | static int pwmled_remove(struct platform_device *pdev) |
117 | { | 117 | { |
118 | const struct gpio_led_platform_data *pdata; | 118 | const struct gpio_led_platform_data *pdata; |
119 | struct pwmled *leds; | 119 | struct pwmled *leds; |
@@ -140,7 +140,7 @@ static struct platform_driver pwmled_driver = { | |||
140 | }, | 140 | }, |
141 | /* REVISIT add suspend() and resume() methods */ | 141 | /* REVISIT add suspend() and resume() methods */ |
142 | .probe = pwmled_probe, | 142 | .probe = pwmled_probe, |
143 | .remove = __exit_p(pwmled_remove), | 143 | .remove = pwmled_remove, |
144 | }; | 144 | }; |
145 | 145 | ||
146 | module_platform_driver(pwmled_driver); | 146 | module_platform_driver(pwmled_driver); |