diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-25 21:25:54 -0500 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-12-03 17:08:42 -0500 |
commit | 4277f2c4667187cbbdd3da3be31ee681bc6b8300 (patch) | |
tree | 8daecab60ec67cfdecf71ec7668c8e96b28b17b8 /drivers/video/wmt_ge_rops.c | |
parent | 9056df19c2a63cec88cf580ab131214ef90d5cb1 (diff) |
video: convert drivers/video/* to use module_platform_driver()
This patch converts the drivers in drivers/video/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.
Cc: Ben Dooks <ben@simtec.co.uk>
Cc: Manuel Lauss <mano@roarinelk.homelinux.net>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Wan ZongShun <mcuos.com@gmail.com>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Lennert Buytenhek <buytenh@wantstofly.org>
Acked-by: Alexey Charkov <alchark@gmail.com>
Acked-by: Damian Hobson-Garcia <dhobsong@igel.co.jp>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/wmt_ge_rops.c')
-rw-r--r-- | drivers/video/wmt_ge_rops.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/video/wmt_ge_rops.c b/drivers/video/wmt_ge_rops.c index 45832b7ef7d2..55be3865015b 100644 --- a/drivers/video/wmt_ge_rops.c +++ b/drivers/video/wmt_ge_rops.c | |||
@@ -167,18 +167,7 @@ static struct platform_driver wmt_ge_rops_driver = { | |||
167 | }, | 167 | }, |
168 | }; | 168 | }; |
169 | 169 | ||
170 | static int __init wmt_ge_rops_init(void) | 170 | module_platform_driver(wmt_ge_rops_driver); |
171 | { | ||
172 | return platform_driver_register(&wmt_ge_rops_driver); | ||
173 | } | ||
174 | |||
175 | static void __exit wmt_ge_rops_exit(void) | ||
176 | { | ||
177 | platform_driver_unregister(&wmt_ge_rops_driver); | ||
178 | } | ||
179 | |||
180 | module_init(wmt_ge_rops_init); | ||
181 | module_exit(wmt_ge_rops_exit); | ||
182 | 171 | ||
183 | MODULE_AUTHOR("Alexey Charkov <alchark@gmail.com"); | 172 | MODULE_AUTHOR("Alexey Charkov <alchark@gmail.com"); |
184 | MODULE_DESCRIPTION("Accelerators for raster operations using " | 173 | MODULE_DESCRIPTION("Accelerators for raster operations using " |