aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/stmpe-ts.c
diff options
context:
space:
mode:
authorJJ Ding <dgdunix@gmail.com>2011-11-29 14:14:13 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2011-12-01 02:41:43 -0500
commitcdcc96e261909eccf596c070116c8b906a42b328 (patch)
tree27446901596bdc384a8c06c7f647a90ed66963fa /drivers/input/touchscreen/stmpe-ts.c
parent24d2469a33112bbce008a15bc4210cc60ffd7443 (diff)
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/stmpe-ts.c')
-rw-r--r--drivers/input/touchscreen/stmpe-ts.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/input/touchscreen/stmpe-ts.c b/drivers/input/touchscreen/stmpe-ts.c
index ae88e13c99ff..692b685720ce 100644
--- a/drivers/input/touchscreen/stmpe-ts.c
+++ b/drivers/input/touchscreen/stmpe-ts.c
@@ -379,20 +379,7 @@ static struct platform_driver stmpe_ts_driver = {
379 .probe = stmpe_input_probe, 379 .probe = stmpe_input_probe,
380 .remove = __devexit_p(stmpe_ts_remove), 380 .remove = __devexit_p(stmpe_ts_remove),
381}; 381};
382 382module_platform_driver(stmpe_ts_driver);
383static int __init stmpe_ts_init(void)
384{
385 return platform_driver_register(&stmpe_ts_driver);
386}
387
388module_init(stmpe_ts_init);
389
390static void __exit stmpe_ts_exit(void)
391{
392 platform_driver_unregister(&stmpe_ts_driver);
393}
394
395module_exit(stmpe_ts_exit);
396 383
397MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>"); 384MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
398MODULE_DESCRIPTION("STMPEXXX touchscreen driver"); 385MODULE_DESCRIPTION("STMPEXXX touchscreen driver");