Commit 307d2a5156eb5778fbc1fc29b0e31d34de9efcfc

Authored by Jingoo Han
Committed by David Woodhouse
1 parent c5345edf7b

mtd: fsmc_nand: 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>

Showing 1 changed file with 1 additions and 12 deletions Side-by-side Diff

drivers/mtd/nand/fsmc_nand.c
... ... @@ -1235,18 +1235,7 @@
1235 1235 },
1236 1236 };
1237 1237  
1238   -static int __init fsmc_nand_init(void)
1239   -{
1240   - return platform_driver_probe(&fsmc_nand_driver,
1241   - fsmc_nand_probe);
1242   -}
1243   -module_init(fsmc_nand_init);
1244   -
1245   -static void __exit fsmc_nand_exit(void)
1246   -{
1247   - platform_driver_unregister(&fsmc_nand_driver);
1248   -}
1249   -module_exit(fsmc_nand_exit);
  1238 +module_platform_driver_probe(fsmc_nand_driver, fsmc_nand_probe);
1250 1239  
1251 1240 MODULE_LICENSE("GPL");
1252 1241 MODULE_AUTHOR("Vipin Kumar <vipin.kumar@st.com>, Ashish Priyadarshi");