Skip to content

Commit

Permalink
mtd: atmel_nand: use module_platform_driver_probe()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jingoo Han authored and David Woodhouse committed Apr 5, 2013
1 parent d9ba310 commit c5345ed
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions drivers/mtd/nand/atmel_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -1737,20 +1737,7 @@ static struct platform_driver atmel_nand_driver = {
},
};

static int __init atmel_nand_init(void)
{
return platform_driver_probe(&atmel_nand_driver, atmel_nand_probe);
}


static void __exit atmel_nand_exit(void)
{
platform_driver_unregister(&atmel_nand_driver);
}


module_init(atmel_nand_init);
module_exit(atmel_nand_exit);
module_platform_driver_probe(atmel_nand_driver, atmel_nand_probe);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Rick Bronson");
Expand Down

0 comments on commit c5345ed

Please sign in to comment.