Commit 1d5b7d47 authored by Dejin Zheng's avatar Dejin Zheng Committed by Miquel Raynal
Browse files

mtd: mtdswap: Use module_mtd_blktrans to register driver



Removing some boilerplate by using module_mtd_blktrans instead of calling
register and unregister in the otherwise empty init/exit functions.

Signed-off-by: default avatarDejin Zheng <zhengdejin5@gmail.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20210213164600.409061-7-zhengdejin5@gmail.com
parent b1f9604f
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -1484,19 +1484,7 @@ static struct mtd_blktrans_ops mtdswap_ops = {
	.owner		= THIS_MODULE,
};

static int __init mtdswap_modinit(void)
{
	return register_mtd_blktrans(&mtdswap_ops);
}

static void __exit mtdswap_modexit(void)
{
	deregister_mtd_blktrans(&mtdswap_ops);
}

module_init(mtdswap_modinit);
module_exit(mtdswap_modexit);

module_mtd_blktrans(mtdswap_ops);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Jarkko Lavinen <jarkko.lavinen@nokia.com>");