diff options
author | JJ Ding <dgdunix@gmail.com> | 2011-11-29 14:08:39 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-12-01 02:41:41 -0500 |
commit | 5146c84f87c8aa3d115cea0d77ed3553df426752 (patch) | |
tree | 9ecbaa48133f7b879f240e8b69f0c4b806b55cca /drivers/input/keyboard/stmpe-keypad.c | |
parent | 3bfd5c5baf66e975b0f365a0cda8d75bf2953ebe (diff) |
Input: keyboard - use macro module_platform_driver()
Commit 940ab88962bc1aff3273a8356d64577a6e386736 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>
Diffstat (limited to 'drivers/input/keyboard/stmpe-keypad.c')
-rw-r--r-- | drivers/input/keyboard/stmpe-keypad.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/input/keyboard/stmpe-keypad.c b/drivers/input/keyboard/stmpe-keypad.c index ab7610ca10eb..9397cf9c625c 100644 --- a/drivers/input/keyboard/stmpe-keypad.c +++ b/drivers/input/keyboard/stmpe-keypad.c | |||
@@ -368,18 +368,7 @@ static struct platform_driver stmpe_keypad_driver = { | |||
368 | .probe = stmpe_keypad_probe, | 368 | .probe = stmpe_keypad_probe, |
369 | .remove = __devexit_p(stmpe_keypad_remove), | 369 | .remove = __devexit_p(stmpe_keypad_remove), |
370 | }; | 370 | }; |
371 | 371 | module_platform_driver(stmpe_keypad_driver); | |
372 | static int __init stmpe_keypad_init(void) | ||
373 | { | ||
374 | return platform_driver_register(&stmpe_keypad_driver); | ||
375 | } | ||
376 | module_init(stmpe_keypad_init); | ||
377 | |||
378 | static void __exit stmpe_keypad_exit(void) | ||
379 | { | ||
380 | platform_driver_unregister(&stmpe_keypad_driver); | ||
381 | } | ||
382 | module_exit(stmpe_keypad_exit); | ||
383 | 372 | ||
384 | MODULE_LICENSE("GPL v2"); | 373 | MODULE_LICENSE("GPL v2"); |
385 | MODULE_DESCRIPTION("STMPExxxx keypad driver"); | 374 | MODULE_DESCRIPTION("STMPExxxx keypad driver"); |