diff options
| author | Dejin Zheng <[email protected]> | 2021-02-14 00:45:55 +0800 |
|---|---|---|
| committer | Miquel Raynal <[email protected]> | 2021-03-11 09:37:48 +0100 |
| commit | f7e39bb7f8ee0bb14778f597e90740e6eea4e011 (patch) | |
| tree | 66841cf525289cecfad4641e130989a17d053554 | |
| parent | c45f07399db2f69f428fa7c7a4177968ae53c736 (diff) | |
mtd: inftlcore: 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/inftlcore.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/mtd/inftlcore.c b/drivers/mtd/inftlcore.c index a0d6c00e7b85..6b48397c750c 100644 --- a/drivers/mtd/inftlcore.c +++ b/drivers/mtd/inftlcore.c @@ -937,18 +937,7 @@ static struct mtd_blktrans_ops inftl_tr = { .owner = THIS_MODULE, }; -static int __init init_inftl(void) -{ - return register_mtd_blktrans(&inftl_tr); -} - -static void __exit cleanup_inftl(void) -{ - deregister_mtd_blktrans(&inftl_tr); -} - -module_init(init_inftl); -module_exit(cleanup_inftl); +module_mtd_blktrans(inftl_tr); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Greg Ungerer <[email protected]>, David Woodhouse <[email protected]>, Fabrice Bellard <[email protected]> et al."); |