diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-03-04 23:30:04 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2013-04-05 08:14:31 -0400 |
commit | c5345edf7b25625bc4205319fa8842c7063d14b3 (patch) | |
tree | ae5fd3a4be9813f48ef8360c287694438d09d583 /drivers/mtd/nand | |
parent | d9ba31092cf6652381d09d3e9cdbd4eb60d2c8cf (diff) |
mtd: atmel_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>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r-- | drivers/mtd/nand/atmel_nand.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index ffcbcca2fd2d..2d23d2929438 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c | |||
@@ -1737,20 +1737,7 @@ static struct platform_driver atmel_nand_driver = { | |||
1737 | }, | 1737 | }, |
1738 | }; | 1738 | }; |
1739 | 1739 | ||
1740 | static int __init atmel_nand_init(void) | 1740 | module_platform_driver_probe(atmel_nand_driver, atmel_nand_probe); |
1741 | { | ||
1742 | return platform_driver_probe(&atmel_nand_driver, atmel_nand_probe); | ||
1743 | } | ||
1744 | |||
1745 | |||
1746 | static void __exit atmel_nand_exit(void) | ||
1747 | { | ||
1748 | platform_driver_unregister(&atmel_nand_driver); | ||
1749 | } | ||
1750 | |||
1751 | |||
1752 | module_init(atmel_nand_init); | ||
1753 | module_exit(atmel_nand_exit); | ||
1754 | 1741 | ||
1755 | MODULE_LICENSE("GPL"); | 1742 | MODULE_LICENSE("GPL"); |
1756 | MODULE_AUTHOR("Rick Bronson"); | 1743 | MODULE_AUTHOR("Rick Bronson"); |