Re: [PATCH mtd/next 3/8] mtd: inftlcore: Use module_mtd_blktrans to register driver

2021-03-02 Thread Miquel Raynal
On Sat, 2021-02-13 at 16:45:55 UTC, Dejin Zheng wrote:
> 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 

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git 
mtd/next, thanks.

Miquel


[PATCH mtd/next 3/8] mtd: inftlcore: Use module_mtd_blktrans to register driver

2021-02-13 Thread Dejin Zheng
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 
---
 drivers/mtd/inftlcore.c | 13 +
 1 file changed, 1 insertion(+), 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(_tr);
-}
-
-static void __exit cleanup_inftl(void)
-{
-   deregister_mtd_blktrans(_tr);
-}
-
-module_init(init_inftl);
-module_exit(cleanup_inftl);
+module_mtd_blktrans(inftl_tr);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Greg Ungerer , David Woodhouse 
, Fabrice Bellard  et al.");
-- 
2.25.0