linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/8] mtd: txx9ndfmc: Use module_platform_driver_probe macro
@ 2013-03-05  8:45 Sachin Kamat
  2013-03-05  8:45 ` [PATCH 2/8] mtd: sh_flctl: " Sachin Kamat
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Sachin Kamat @ 2013-03-05  8:45 UTC (permalink / raw)
  To: linux-mtd; +Cc: sachin.kamat, artem.bityutskiy, dwmw2, dedekind1

module_platform_driver_probe() eliminates the boilerplate and simplifies
the code.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/mtd/nand/txx9ndfmc.c |   13 +------------
 1 files changed, 1 insertions(+), 12 deletions(-)

diff --git a/drivers/mtd/nand/txx9ndfmc.c b/drivers/mtd/nand/txx9ndfmc.c
index e1e8748..7ed654c 100644
--- a/drivers/mtd/nand/txx9ndfmc.c
+++ b/drivers/mtd/nand/txx9ndfmc.c
@@ -427,18 +427,7 @@ static struct platform_driver txx9ndfmc_driver = {
 	},
 };
 
-static int __init txx9ndfmc_init(void)
-{
-	return platform_driver_probe(&txx9ndfmc_driver, txx9ndfmc_probe);
-}
-
-static void __exit txx9ndfmc_exit(void)
-{
-	platform_driver_unregister(&txx9ndfmc_driver);
-}
-
-module_init(txx9ndfmc_init);
-module_exit(txx9ndfmc_exit);
+module_platform_driver_probe(txx9ndfmc_driver, txx9ndfmc_probe);
 
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("TXx9 SoC NAND flash controller driver");
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-03-16 20:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-05  8:45 [PATCH 1/8] mtd: txx9ndfmc: Use module_platform_driver_probe macro Sachin Kamat
2013-03-05  8:45 ` [PATCH 2/8] mtd: sh_flctl: " Sachin Kamat
2013-03-05  8:45 ` [PATCH 3/8] mtd: orion_nand: " Sachin Kamat
2013-03-05  8:45 ` [PATCH 4/8] mtd: fsmc_nand: " Sachin Kamat
2013-03-05  8:45 ` [PATCH 5/8] mtd: docg4: " Sachin Kamat
2013-03-16 19:05   ` Mike Dunn
2013-03-05  8:45 ` [PATCH 6/8] mtd: davinci_nand: " Sachin Kamat
2013-03-05  8:45 ` [PATCH 7/8] mtd: atmel_nand: " Sachin Kamat
2013-03-05  8:45 ` [PATCH 8/8] mtd: docg3: " Sachin Kamat
2013-03-13 11:27 ` [PATCH 1/8] mtd: txx9ndfmc: " Sachin Kamat
2013-03-13 11:34 ` Artem Bityutskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).