diff options
author | Hanjun Guo <hanjun.guo@linaro.org> | 2013-09-29 01:32:09 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-09-30 03:51:09 -0400 |
commit | d07b319143bd247410fbb5e1859a4928af7a42ce (patch) | |
tree | a2da16eb55631c921cb068708db7df7c973e8244 /drivers/video/au1200fb.c | |
parent | fbc0156c8e7b752dd1cd6fedef0d53800ebbda75 (diff) |
Video / au1200fb: Use module_platform_driver() to simplify code
Convert to module_platform_driver() to simplify code.
Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/au1200fb.c')
-rw-r--r-- | drivers/video/au1200fb.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/drivers/video/au1200fb.c b/drivers/video/au1200fb.c index 301224ecc950..7a6b4c6f863b 100644 --- a/drivers/video/au1200fb.c +++ b/drivers/video/au1200fb.c | |||
@@ -1874,21 +1874,7 @@ static struct platform_driver au1200fb_driver = { | |||
1874 | .probe = au1200fb_drv_probe, | 1874 | .probe = au1200fb_drv_probe, |
1875 | .remove = au1200fb_drv_remove, | 1875 | .remove = au1200fb_drv_remove, |
1876 | }; | 1876 | }; |
1877 | 1877 | module_platform_driver(au1200fb_driver); | |
1878 | /*-------------------------------------------------------------------------*/ | ||
1879 | |||
1880 | static int __init au1200fb_init(void) | ||
1881 | { | ||
1882 | return platform_driver_register(&au1200fb_driver); | ||
1883 | } | ||
1884 | |||
1885 | static void __exit au1200fb_cleanup(void) | ||
1886 | { | ||
1887 | platform_driver_unregister(&au1200fb_driver); | ||
1888 | } | ||
1889 | |||
1890 | module_init(au1200fb_init); | ||
1891 | module_exit(au1200fb_cleanup); | ||
1892 | 1878 | ||
1893 | MODULE_DESCRIPTION(DRIVER_DESC); | 1879 | MODULE_DESCRIPTION(DRIVER_DESC); |
1894 | MODULE_LICENSE("GPL"); | 1880 | MODULE_LICENSE("GPL"); |