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/cobalt_btns.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/cobalt_btns.c')
-rw-r--r-- | drivers/input/misc/cobalt_btns.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/input/misc/cobalt_btns.c b/drivers/input/misc/cobalt_btns.c index fd8407a29631..53e43d295148 100644 --- a/drivers/input/misc/cobalt_btns.c +++ b/drivers/input/misc/cobalt_btns.c | |||
@@ -163,16 +163,4 @@ static struct platform_driver cobalt_buttons_driver = { | |||
163 | .owner = THIS_MODULE, | 163 | .owner = THIS_MODULE, |
164 | }, | 164 | }, |
165 | }; | 165 | }; |
166 | 166 | module_platform_driver(cobalt_buttons_driver); | |
167 | static int __init cobalt_buttons_init(void) | ||
168 | { | ||
169 | return platform_driver_register(&cobalt_buttons_driver); | ||
170 | } | ||
171 | |||
172 | static void __exit cobalt_buttons_exit(void) | ||
173 | { | ||
174 | platform_driver_unregister(&cobalt_buttons_driver); | ||
175 | } | ||
176 | |||
177 | module_init(cobalt_buttons_init); | ||
178 | module_exit(cobalt_buttons_exit); | ||