mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-10 23:29:46 +00:00
mtd: mtdblock: 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-5-zhengdejin5@gmail.com
This commit is contained in:
parent
f7e39bb7f8
commit
27b08bf3c3
@ -346,19 +346,7 @@ static struct mtd_blktrans_ops mtdblock_tr = {
|
||||
.owner = THIS_MODULE,
|
||||
};
|
||||
|
||||
static int __init init_mtdblock(void)
|
||||
{
|
||||
return register_mtd_blktrans(&mtdblock_tr);
|
||||
}
|
||||
|
||||
static void __exit cleanup_mtdblock(void)
|
||||
{
|
||||
deregister_mtd_blktrans(&mtdblock_tr);
|
||||
}
|
||||
|
||||
module_init(init_mtdblock);
|
||||
module_exit(cleanup_mtdblock);
|
||||
|
||||
module_mtd_blktrans(mtdblock_tr);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user