mtd: bf5xx_nand: Use module_platform_driver()
module_platform_driver macro removes some boilerplate and makes the code simpler. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
ef54f87366
commit
5884974eda
|
@ -874,21 +874,7 @@ static struct platform_driver bf5xx_nand_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init bf5xx_nand_init(void)
|
||||
{
|
||||
printk(KERN_INFO "%s, Version %s (c) 2007 Analog Devices, Inc.\n",
|
||||
DRV_DESC, DRV_VERSION);
|
||||
|
||||
return platform_driver_register(&bf5xx_nand_driver);
|
||||
}
|
||||
|
||||
static void __exit bf5xx_nand_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&bf5xx_nand_driver);
|
||||
}
|
||||
|
||||
module_init(bf5xx_nand_init);
|
||||
module_exit(bf5xx_nand_exit);
|
||||
module_platform_driver(bf5xx_nand_driver);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR(DRV_AUTHOR);
|
||||
|
|
Loading…
Reference in New Issue