diff options
Diffstat (limited to 'drivers/input/keyboard/bf54x-keys.c')
-rw-r--r-- | drivers/input/keyboard/bf54x-keys.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/drivers/input/keyboard/bf54x-keys.c b/drivers/input/keyboard/bf54x-keys.c index 7d989603f875..8eb9116e0a5f 100644 --- a/drivers/input/keyboard/bf54x-keys.c +++ b/drivers/input/keyboard/bf54x-keys.c | |||
@@ -384,7 +384,7 @@ static int bfin_kpad_resume(struct platform_device *pdev) | |||
384 | # define bfin_kpad_resume NULL | 384 | # define bfin_kpad_resume NULL |
385 | #endif | 385 | #endif |
386 | 386 | ||
387 | struct platform_driver bfin_kpad_device_driver = { | 387 | static struct platform_driver bfin_kpad_device_driver = { |
388 | .driver = { | 388 | .driver = { |
389 | .name = DRV_NAME, | 389 | .name = DRV_NAME, |
390 | .owner = THIS_MODULE, | 390 | .owner = THIS_MODULE, |
@@ -394,19 +394,7 @@ struct platform_driver bfin_kpad_device_driver = { | |||
394 | .suspend = bfin_kpad_suspend, | 394 | .suspend = bfin_kpad_suspend, |
395 | .resume = bfin_kpad_resume, | 395 | .resume = bfin_kpad_resume, |
396 | }; | 396 | }; |
397 | 397 | module_platform_driver(bfin_kpad_device_driver); | |
398 | static int __init bfin_kpad_init(void) | ||
399 | { | ||
400 | return platform_driver_register(&bfin_kpad_device_driver); | ||
401 | } | ||
402 | |||
403 | static void __exit bfin_kpad_exit(void) | ||
404 | { | ||
405 | platform_driver_unregister(&bfin_kpad_device_driver); | ||
406 | } | ||
407 | |||
408 | module_init(bfin_kpad_init); | ||
409 | module_exit(bfin_kpad_exit); | ||
410 | 398 | ||
411 | MODULE_LICENSE("GPL"); | 399 | MODULE_LICENSE("GPL"); |
412 | MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>"); | 400 | MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>"); |