mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
mtd: ftl: 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-3-zhengdejin5@gmail.com
This commit is contained in:
parent
6cfeb41a82
commit
c45f07399d
1 changed files with 1 additions and 13 deletions
|
@ -1056,19 +1056,7 @@ static struct mtd_blktrans_ops ftl_tr = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init init_ftl(void)
|
module_mtd_blktrans(ftl_tr);
|
||||||
{
|
|
||||||
return register_mtd_blktrans(&ftl_tr);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit cleanup_ftl(void)
|
|
||||||
{
|
|
||||||
deregister_mtd_blktrans(&ftl_tr);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(init_ftl);
|
|
||||||
module_exit(cleanup_ftl);
|
|
||||||
|
|
||||||
|
|
||||||
MODULE_LICENSE("Dual MPL/GPL");
|
MODULE_LICENSE("Dual MPL/GPL");
|
||||||
MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
|
MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
|
||||||
|
|
Loading…
Add table
Reference in a new issue