Input: keyboard - use macro module_platform_driver()
Commit 940ab88962 introduced a new macro to
save some platform_driver boilerplate code. Use it.
Signed-off-by: JJ Ding <dgdunix@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
@@ -326,18 +326,7 @@ static struct platform_driver spear_kbd_driver = {
|
||||
#endif
|
||||
},
|
||||
};
|
||||
|
||||
static int __init spear_kbd_init(void)
|
||||
{
|
||||
return platform_driver_register(&spear_kbd_driver);
|
||||
}
|
||||
module_init(spear_kbd_init);
|
||||
|
||||
static void __exit spear_kbd_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&spear_kbd_driver);
|
||||
}
|
||||
module_exit(spear_kbd_exit);
|
||||
module_platform_driver(spear_kbd_driver);
|
||||
|
||||
MODULE_AUTHOR("Rajeev Kumar");
|
||||
MODULE_DESCRIPTION("SPEAr Keyboard Driver");
|
||||
|
||||
Reference in New Issue
Block a user