diff options
author | JJ Ding <dgdunix@gmail.com> | 2011-11-29 14:08:40 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-12-01 02:41:42 -0500 |
commit | 840a746be2beddd2ada0e5ba772147316d071f25 (patch) | |
tree | 3c078fea13106e83cbcb910aaf8e59046962e452 /drivers/input/misc/wm831x-on.c | |
parent | 5146c84f87c8aa3d115cea0d77ed3553df426752 (diff) |
Input: misc - 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/misc/wm831x-on.c')
-rw-r--r-- | drivers/input/misc/wm831x-on.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/input/misc/wm831x-on.c b/drivers/input/misc/wm831x-on.c index c3d7ba5f5b47..47f18d6bce46 100644 --- a/drivers/input/misc/wm831x-on.c +++ b/drivers/input/misc/wm831x-on.c | |||
@@ -145,18 +145,7 @@ static struct platform_driver wm831x_on_driver = { | |||
145 | .owner = THIS_MODULE, | 145 | .owner = THIS_MODULE, |
146 | }, | 146 | }, |
147 | }; | 147 | }; |
148 | 148 | module_platform_driver(wm831x_on_driver); | |
149 | static int __init wm831x_on_init(void) | ||
150 | { | ||
151 | return platform_driver_register(&wm831x_on_driver); | ||
152 | } | ||
153 | module_init(wm831x_on_init); | ||
154 | |||
155 | static void __exit wm831x_on_exit(void) | ||
156 | { | ||
157 | platform_driver_unregister(&wm831x_on_driver); | ||
158 | } | ||
159 | module_exit(wm831x_on_exit); | ||
160 | 149 | ||
161 | MODULE_ALIAS("platform:wm831x-on"); | 150 | MODULE_ALIAS("platform:wm831x-on"); |
162 | MODULE_DESCRIPTION("WM831x ON pin"); | 151 | MODULE_DESCRIPTION("WM831x ON pin"); |