projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5345ed
)
mtd: fsmc_nand: use module_platform_driver_probe()
author
Jingoo Han
<
[email protected]
>
Tue, 5 Mar 2013 04:30:36 +0000
(13:30 +0900)
committer
David Woodhouse
<
[email protected]
>
Fri, 5 Apr 2013 12:14:34 +0000
(13:14 +0100)
This patch uses module_platform_driver_probe() macro which makes
the code smaller and simpler.
Signed-off-by: Jingoo Han <
[email protected]
>
Signed-off-by: Artem Bityutskiy <
[email protected]
>
Signed-off-by: David Woodhouse <
[email protected]
>
drivers/mtd/nand/fsmc_nand.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/nand/fsmc_nand.c
b/drivers/mtd/nand/fsmc_nand.c
index 05ba3f0c2d194ee5c6a0d745f0a78b6744f23486..911e2433fe304b107f1ad8b585621d653578e302 100644
(file)
--- a/
drivers/mtd/nand/fsmc_nand.c
+++ b/
drivers/mtd/nand/fsmc_nand.c
@@
-1235,18
+1235,7
@@
static struct platform_driver fsmc_nand_driver = {
},
};
-static int __init fsmc_nand_init(void)
-{
- return platform_driver_probe(&fsmc_nand_driver,
- fsmc_nand_probe);
-}
-module_init(fsmc_nand_init);
-
-static void __exit fsmc_nand_exit(void)
-{
- platform_driver_unregister(&fsmc_nand_driver);
-}
-module_exit(fsmc_nand_exit);
+module_platform_driver_probe(fsmc_nand_driver, fsmc_nand_probe);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Vipin Kumar <
[email protected]
>, Ashish Priyadarshi");