diff options
Diffstat (limited to 'drivers/leds/leds-lm3533.c')
-rw-r--r-- | drivers/leds/leds-lm3533.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/leds/leds-lm3533.c b/drivers/leds/leds-lm3533.c index f6837b99908c..bbf24d038a7f 100644 --- a/drivers/leds/leds-lm3533.c +++ b/drivers/leds/leds-lm3533.c | |||
@@ -646,7 +646,7 @@ static struct attribute_group lm3533_led_attribute_group = { | |||
646 | .attrs = lm3533_led_attributes | 646 | .attrs = lm3533_led_attributes |
647 | }; | 647 | }; |
648 | 648 | ||
649 | static int __devinit lm3533_led_setup(struct lm3533_led *led, | 649 | static int lm3533_led_setup(struct lm3533_led *led, |
650 | struct lm3533_led_platform_data *pdata) | 650 | struct lm3533_led_platform_data *pdata) |
651 | { | 651 | { |
652 | int ret; | 652 | int ret; |
@@ -658,7 +658,7 @@ static int __devinit lm3533_led_setup(struct lm3533_led *led, | |||
658 | return lm3533_ctrlbank_set_pwm(&led->cb, pdata->pwm); | 658 | return lm3533_ctrlbank_set_pwm(&led->cb, pdata->pwm); |
659 | } | 659 | } |
660 | 660 | ||
661 | static int __devinit lm3533_led_probe(struct platform_device *pdev) | 661 | static int lm3533_led_probe(struct platform_device *pdev) |
662 | { | 662 | { |
663 | struct lm3533 *lm3533; | 663 | struct lm3533 *lm3533; |
664 | struct lm3533_led_platform_data *pdata; | 664 | struct lm3533_led_platform_data *pdata; |
@@ -742,7 +742,7 @@ err_unregister: | |||
742 | return ret; | 742 | return ret; |
743 | } | 743 | } |
744 | 744 | ||
745 | static int __devexit lm3533_led_remove(struct platform_device *pdev) | 745 | static int lm3533_led_remove(struct platform_device *pdev) |
746 | { | 746 | { |
747 | struct lm3533_led *led = platform_get_drvdata(pdev); | 747 | struct lm3533_led *led = platform_get_drvdata(pdev); |
748 | 748 | ||
@@ -774,7 +774,7 @@ static struct platform_driver lm3533_led_driver = { | |||
774 | .owner = THIS_MODULE, | 774 | .owner = THIS_MODULE, |
775 | }, | 775 | }, |
776 | .probe = lm3533_led_probe, | 776 | .probe = lm3533_led_probe, |
777 | .remove = __devexit_p(lm3533_led_remove), | 777 | .remove = lm3533_led_remove, |
778 | .shutdown = lm3533_led_shutdown, | 778 | .shutdown = lm3533_led_shutdown, |
779 | }; | 779 | }; |
780 | module_platform_driver(lm3533_led_driver); | 780 | module_platform_driver(lm3533_led_driver); |