diff options
author | Dejin Zheng <[email protected]> | 2021-02-14 00:45:58 +0800 |
---|---|---|
committer | Miquel Raynal <[email protected]> | 2021-03-11 09:37:48 +0100 |
commit | 1d5b7d479e7e180425ab2f02049c031ffe3b2c43 (patch) | |
tree | 10d18511c7ce5336d4551c1b13841570b66708de | |
parent | b1f9604f4d2aa4ca211e48b00feb5b831bd46982 (diff) |
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: Dejin Zheng <[email protected]>
Signed-off-by: Miquel Raynal <[email protected]>
Link: https://lore.kernel.org/linux-mtd/[email protected]
-rw-r--r-- | drivers/mtd/mtdswap.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/mtd/mtdswap.c b/drivers/mtd/mtdswap.c index 795dec4483c2..7e309270ddd4 100644 --- a/drivers/mtd/mtdswap.c +++ b/drivers/mtd/mtdswap.c @@ -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 <[email protected]>"); |