diff options
author | JJ Ding <dgdunix@gmail.com> | 2011-11-29 11:14:13 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-11-30 23:41:43 -0800 |
commit | cdcc96e261909eccf596c070116c8b906a42b328 (patch) | |
tree | 27446901596bdc384a8c06c7f647a90ed66963fa /drivers/input/touchscreen/tnetv107x-ts.c | |
parent | 24d2469a33112bbce008a15bc4210cc60ffd7443 (diff) | |
download | blackbird-op-linux-cdcc96e261909eccf596c070116c8b906a42b328.tar.gz blackbird-op-linux-cdcc96e261909eccf596c070116c8b906a42b328.zip |
Input: touchscreen - 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/touchscreen/tnetv107x-ts.c')
-rw-r--r-- | drivers/input/touchscreen/tnetv107x-ts.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/input/touchscreen/tnetv107x-ts.c b/drivers/input/touchscreen/tnetv107x-ts.c index 0e8f63e5b36f..7e7488097359 100644 --- a/drivers/input/touchscreen/tnetv107x-ts.c +++ b/drivers/input/touchscreen/tnetv107x-ts.c @@ -378,19 +378,7 @@ static struct platform_driver tsc_driver = { .driver.name = "tnetv107x-ts", .driver.owner = THIS_MODULE, }; - -static int __init tsc_init(void) -{ - return platform_driver_register(&tsc_driver); -} - -static void __exit tsc_exit(void) -{ - platform_driver_unregister(&tsc_driver); -} - -module_init(tsc_init); -module_exit(tsc_exit); +module_platform_driver(tsc_driver); MODULE_AUTHOR("Cyril Chemparathy"); MODULE_DESCRIPTION("TNETV107X Touchscreen Driver"); |