diff options
author | JJ Ding <dgdunix@gmail.com> | 2011-11-29 14:14:13 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-12-01 02:41:43 -0500 |
commit | cdcc96e261909eccf596c070116c8b906a42b328 (patch) | |
tree | 27446901596bdc384a8c06c7f647a90ed66963fa /drivers/input/touchscreen/ucb1400_ts.c | |
parent | 24d2469a33112bbce008a15bc4210cc60ffd7443 (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/ucb1400_ts.c')
-rw-r--r-- | drivers/input/touchscreen/ucb1400_ts.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/input/touchscreen/ucb1400_ts.c b/drivers/input/touchscreen/ucb1400_ts.c index 3b5b5df04dd6..cf2440f537ac 100644 --- a/drivers/input/touchscreen/ucb1400_ts.c +++ b/drivers/input/touchscreen/ucb1400_ts.c | |||
@@ -456,16 +456,7 @@ static struct platform_driver ucb1400_ts_driver = { | |||
456 | .name = "ucb1400_ts", | 456 | .name = "ucb1400_ts", |
457 | }, | 457 | }, |
458 | }; | 458 | }; |
459 | 459 | module_platform_driver(ucb1400_ts_driver); | |
460 | static int __init ucb1400_ts_init(void) | ||
461 | { | ||
462 | return platform_driver_register(&ucb1400_ts_driver); | ||
463 | } | ||
464 | |||
465 | static void __exit ucb1400_ts_exit(void) | ||
466 | { | ||
467 | platform_driver_unregister(&ucb1400_ts_driver); | ||
468 | } | ||
469 | 460 | ||
470 | module_param(adcsync, bool, 0444); | 461 | module_param(adcsync, bool, 0444); |
471 | MODULE_PARM_DESC(adcsync, "Synchronize touch readings with ADCSYNC pin."); | 462 | MODULE_PARM_DESC(adcsync, "Synchronize touch readings with ADCSYNC pin."); |
@@ -479,8 +470,5 @@ MODULE_PARM_DESC(ts_delay_pressure, | |||
479 | "delay between panel setup and pressure read." | 470 | "delay between panel setup and pressure read." |
480 | " Default = 0us."); | 471 | " Default = 0us."); |
481 | 472 | ||
482 | module_init(ucb1400_ts_init); | ||
483 | module_exit(ucb1400_ts_exit); | ||
484 | |||
485 | MODULE_DESCRIPTION("Philips UCB1400 touchscreen driver"); | 473 | MODULE_DESCRIPTION("Philips UCB1400 touchscreen driver"); |
486 | MODULE_LICENSE("GPL"); | 474 | MODULE_LICENSE("GPL"); |