diff options
Diffstat (limited to 'drivers/leds/leds-netxbig.c')
-rw-r--r-- | drivers/leds/leds-netxbig.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/drivers/leds/leds-netxbig.c b/drivers/leds/leds-netxbig.c index f2e51c134399..8c7a4ea10dc3 100644 --- a/drivers/leds/leds-netxbig.c +++ b/drivers/leds/leds-netxbig.c | |||
@@ -429,21 +429,10 @@ static struct platform_driver netxbig_led_driver = { | |||
429 | .owner = THIS_MODULE, | 429 | .owner = THIS_MODULE, |
430 | }, | 430 | }, |
431 | }; | 431 | }; |
432 | MODULE_ALIAS("platform:leds-netxbig"); | ||
433 | |||
434 | static int __init netxbig_led_init(void) | ||
435 | { | ||
436 | return platform_driver_register(&netxbig_led_driver); | ||
437 | } | ||
438 | 432 | ||
439 | static void __exit netxbig_led_exit(void) | 433 | module_platform_driver(netxbig_led_driver); |
440 | { | ||
441 | platform_driver_unregister(&netxbig_led_driver); | ||
442 | } | ||
443 | |||
444 | module_init(netxbig_led_init); | ||
445 | module_exit(netxbig_led_exit); | ||
446 | 434 | ||
447 | MODULE_AUTHOR("Simon Guinot <sguinot@lacie.com>"); | 435 | MODULE_AUTHOR("Simon Guinot <sguinot@lacie.com>"); |
448 | MODULE_DESCRIPTION("LED driver for LaCie xBig Network boards"); | 436 | MODULE_DESCRIPTION("LED driver for LaCie xBig Network boards"); |
449 | MODULE_LICENSE("GPL"); | 437 | MODULE_LICENSE("GPL"); |
438 | MODULE_ALIAS("platform:leds-netxbig"); | ||