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

Commit 8268df26 authored by Libo Chen's avatar Libo Chen Committed by David Woodhouse
Browse files

mtd: bcm47xxsflash: convert to module_platform_driver instead of init/exit



convert to module_platform_driver instead of init/exit

Suggested-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: default avatarLibo chen <libo.chen@huawei.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent d2b1bd14
Loading
Loading
Loading
Loading
+1 −19
Original line number Diff line number Diff line
@@ -176,22 +176,4 @@ static struct platform_driver bcma_sflash_driver = {
 * Init
 **************************************************/

static int __init bcm47xxsflash_init(void)
{
	int err;

	err = platform_driver_register(&bcma_sflash_driver);
	if (err)
		pr_err("Failed to register BCMA serial flash driver: %d\n",
		       err);

	return err;
}

static void __exit bcm47xxsflash_exit(void)
{
	platform_driver_unregister(&bcma_sflash_driver);
}

module_init(bcm47xxsflash_init);
module_exit(bcm47xxsflash_exit);
module_platform_driver(bcma_sflash_driver);