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 <zhengdejin5@gmail.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20210213164600.409061-4-zhengdejin5@gmail.com
This commit is contained in:
parent
c45f07399d
commit
f7e39bb7f8
@ -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 <gerg@snapgear.com>, David Woodhouse <dwmw2@infradead.org>, Fabrice Bellard <fabrice.bellard@netgem.com> et al.");
|
||||
|
Loading…
Reference in New Issue
Block a user