Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5884974e authored by Sachin Kamat's avatar Sachin Kamat Committed by David Woodhouse
Browse files

mtd: bf5xx_nand: Use module_platform_driver()



module_platform_driver macro removes some boilerplate and makes
the code simpler.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent ef54f873
Loading
Loading
Loading
Loading
+1 −15
Original line number Diff line number Diff line
@@ -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);