aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/vr41xx_siu.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-11-28 19:22:15 +0800
committerGreg Kroah-Hartman <gregkh@suse.de>2011-11-30 20:11:46 +0900
commitc8381c15b14b7c2d212c182d3b9b3fa7217994da (patch)
tree48ac78d7b1b965571a147ae44eabf2c95bb0b663 /drivers/tty/serial/vr41xx_siu.c
parentparport: convert drivers/parport/* to use module_platform_driver() (diff)
downloadlinux-dev-c8381c15b14b7c2d212c182d3b9b3fa7217994da.tar.xz
linux-dev-c8381c15b14b7c2d212c182d3b9b3fa7217994da.zip
TTY: serial: convert drivers/tty/serial/* to use module_platform_driver()
This patch converts the drivers in drivers/tty/serial/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: Arnd Bergmann <arnd@arndb.de> Cc: Jamie Iles <jamie@jamieiles.com> Cc: Yoichi Yuasa <yuasa@linux-mips.org> Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/tty/serial/vr41xx_siu.c')
-rw-r--r--drivers/tty/serial/vr41xx_siu.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/tty/serial/vr41xx_siu.c b/drivers/tty/serial/vr41xx_siu.c
index 3beb6ab4fa68..83148e79ca13 100644
--- a/drivers/tty/serial/vr41xx_siu.c
+++ b/drivers/tty/serial/vr41xx_siu.c
@@ -961,18 +961,7 @@ static struct platform_driver siu_device_driver = {
},
};
-static int __init vr41xx_siu_init(void)
-{
- return platform_driver_register(&siu_device_driver);
-}
-
-static void __exit vr41xx_siu_exit(void)
-{
- platform_driver_unregister(&siu_device_driver);
-}
-
-module_init(vr41xx_siu_init);
-module_exit(vr41xx_siu_exit);
+module_platform_driver(siu_device_driver);
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:SIU");