summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/sh_flctl.c
diff options
context:
space:
mode:
authorJingoo Han2013-03-05 05:30:56 +0100
committerDavid Woodhouse2013-04-05 14:14:37 +0200
commit14ec6dae5b311eae8c14352112dc83cce507cf9c (patch)
treeb0b8fcd664400525f36a7383845bdefe17e3d7cb /drivers/mtd/nand/sh_flctl.c
parentmtd: fsmc_nand: use module_platform_driver_probe() (diff)
downloadkernel-qcow2-linux-14ec6dae5b311eae8c14352112dc83cce507cf9c.tar.gz
kernel-qcow2-linux-14ec6dae5b311eae8c14352112dc83cce507cf9c.tar.xz
kernel-qcow2-linux-14ec6dae5b311eae8c14352112dc83cce507cf9c.zip
mtd: sh_flctl: use module_platform_driver_probe()
This patch uses module_platform_driver_probe() macro which makes the code smaller and simpler. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand/sh_flctl.c')
-rw-r--r--drivers/mtd/nand/sh_flctl.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/mtd/nand/sh_flctl.c b/drivers/mtd/nand/sh_flctl.c
index 57b3971c9c0a..5899738ffced 100644
--- a/drivers/mtd/nand/sh_flctl.c
+++ b/drivers/mtd/nand/sh_flctl.c
@@ -1223,18 +1223,7 @@ static struct platform_driver flctl_driver = {
},
};
-static int __init flctl_nand_init(void)
-{
- return platform_driver_probe(&flctl_driver, flctl_probe);
-}
-
-static void __exit flctl_nand_cleanup(void)
-{
- platform_driver_unregister(&flctl_driver);
-}
-
-module_init(flctl_nand_init);
-module_exit(flctl_nand_cleanup);
+module_platform_driver_probe(flctl_driver, flctl_probe);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Yoshihiro Shimoda");