mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
mtd: rfd_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-9-zhengdejin5@gmail.com
This commit is contained in:
parent
2dd8b55e2c
commit
d38c2b9325
@ -794,18 +794,7 @@ static struct mtd_blktrans_ops rfd_ftl_tr = {
|
||||
.owner = THIS_MODULE,
|
||||
};
|
||||
|
||||
static int __init init_rfd_ftl(void)
|
||||
{
|
||||
return register_mtd_blktrans(&rfd_ftl_tr);
|
||||
}
|
||||
|
||||
static void __exit cleanup_rfd_ftl(void)
|
||||
{
|
||||
deregister_mtd_blktrans(&rfd_ftl_tr);
|
||||
}
|
||||
|
||||
module_init(init_rfd_ftl);
|
||||
module_exit(cleanup_rfd_ftl);
|
||||
module_mtd_blktrans(rfd_ftl_tr);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Sean Young <sean@mess.org>");
|
||||
|
Loading…
Reference in New Issue
Block a user