diff options
author | Fabio Porcedda <fabio.porcedda@gmail.com> | 2013-03-18 00:31:03 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-03-18 00:37:39 -0400 |
commit | 38a46eb8cc0faec0345c27083fb26d1e7e02ccff (patch) | |
tree | 3fa75af7ddaaf6c5faf1cae39e4fb2b755a3c2d5 | |
parent | 8698a9382603faf64f045445b90f768522af28da (diff) |
Input: mc13783_ts - use module_platform_driver_probe()
This patch converts the drivers to use the
module_platform_driver_probe() macro which makes the code smaller and
a bit simpler.
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/touchscreen/mc13783_ts.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/input/touchscreen/mc13783_ts.c b/drivers/input/touchscreen/mc13783_ts.c index 02103b6abb39..89308fe38752 100644 --- a/drivers/input/touchscreen/mc13783_ts.c +++ b/drivers/input/touchscreen/mc13783_ts.c | |||
@@ -250,17 +250,7 @@ static struct platform_driver mc13783_ts_driver = { | |||
250 | }, | 250 | }, |
251 | }; | 251 | }; |
252 | 252 | ||
253 | static int __init mc13783_ts_init(void) | 253 | module_platform_driver_probe(mc13783_ts_driver, mc13783_ts_probe); |
254 | { | ||
255 | return platform_driver_probe(&mc13783_ts_driver, &mc13783_ts_probe); | ||
256 | } | ||
257 | module_init(mc13783_ts_init); | ||
258 | |||
259 | static void __exit mc13783_ts_exit(void) | ||
260 | { | ||
261 | platform_driver_unregister(&mc13783_ts_driver); | ||
262 | } | ||
263 | module_exit(mc13783_ts_exit); | ||
264 | 254 | ||
265 | MODULE_DESCRIPTION("MC13783 input touchscreen driver"); | 255 | MODULE_DESCRIPTION("MC13783 input touchscreen driver"); |
266 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>"); | 256 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>"); |