All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dejin Zheng <zhengdejin5@gmail.com>
To: miquel.raynal@bootlin.com, richard@nod.at, vigneshr@ti.com,
	nixiaoming@huawei.com
Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org,
	Dejin Zheng <zhengdejin5@gmail.com>
Subject: [PATCH mtd/next 6/8] mtd: mtdswap: Use module_mtd_blktrans to register driver
Date: Sun, 14 Feb 2021 00:45:58 +0800	[thread overview]
Message-ID: <20210213164600.409061-7-zhengdejin5@gmail.com> (raw)
In-Reply-To: <20210213164600.409061-1-zhengdejin5@gmail.com>

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>
---
 drivers/mtd/mtdswap.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/mtd/mtdswap.c b/drivers/mtd/mtdswap.c
index 795dec4483c2..7e309270ddd4 100644
--- a/drivers/mtd/mtdswap.c
+++ b/drivers/mtd/mtdswap.c
@@ -1484,19 +1484,7 @@ static struct mtd_blktrans_ops mtdswap_ops = {
 	.owner		= THIS_MODULE,
 };
 
-static int __init mtdswap_modinit(void)
-{
-	return register_mtd_blktrans(&mtdswap_ops);
-}
-
-static void __exit mtdswap_modexit(void)
-{
-	deregister_mtd_blktrans(&mtdswap_ops);
-}
-
-module_init(mtdswap_modinit);
-module_exit(mtdswap_modexit);
-
+module_mtd_blktrans(mtdswap_ops);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Jarkko Lavinen <jarkko.lavinen@nokia.com>");
-- 
2.25.0


WARNING: multiple messages have this Message-ID (diff)
From: Dejin Zheng <zhengdejin5@gmail.com>
To: miquel.raynal@bootlin.com, richard@nod.at, vigneshr@ti.com,
	nixiaoming@huawei.com
Cc: Dejin Zheng <zhengdejin5@gmail.com>,
	linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: [PATCH mtd/next 6/8] mtd: mtdswap: Use module_mtd_blktrans to register driver
Date: Sun, 14 Feb 2021 00:45:58 +0800	[thread overview]
Message-ID: <20210213164600.409061-7-zhengdejin5@gmail.com> (raw)
In-Reply-To: <20210213164600.409061-1-zhengdejin5@gmail.com>

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>
---
 drivers/mtd/mtdswap.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/mtd/mtdswap.c b/drivers/mtd/mtdswap.c
index 795dec4483c2..7e309270ddd4 100644
--- a/drivers/mtd/mtdswap.c
+++ b/drivers/mtd/mtdswap.c
@@ -1484,19 +1484,7 @@ static struct mtd_blktrans_ops mtdswap_ops = {
 	.owner		= THIS_MODULE,
 };
 
-static int __init mtdswap_modinit(void)
-{
-	return register_mtd_blktrans(&mtdswap_ops);
-}
-
-static void __exit mtdswap_modexit(void)
-{
-	deregister_mtd_blktrans(&mtdswap_ops);
-}
-
-module_init(mtdswap_modinit);
-module_exit(mtdswap_modexit);
-
+module_mtd_blktrans(mtdswap_ops);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Jarkko Lavinen <jarkko.lavinen@nokia.com>");
-- 
2.25.0


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

  parent reply	other threads:[~2021-02-13 16:48 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-13 16:45 [PATCH mtd/next 0/8] Introduces the module_mtd_blktrans macro Dejin Zheng
2021-02-13 16:45 ` Dejin Zheng
2021-02-13 16:45 ` [PATCH mtd/next 1/8] mtd: Add helper macro for register_mtd_blktrans boilerplate Dejin Zheng
2021-02-13 16:45   ` Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal
2021-02-13 16:45 ` [PATCH mtd/next 2/8] mtd: ftl: Use module_mtd_blktrans to register driver Dejin Zheng
2021-02-13 16:45   ` Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal
2021-02-13 16:45 ` [PATCH mtd/next 3/8] mtd: inftlcore: " Dejin Zheng
2021-02-13 16:45   ` Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal
2021-02-13 16:45 ` [PATCH mtd/next 4/8] mtd: mtdblock: " Dejin Zheng
2021-02-13 16:45   ` Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal
2021-02-13 16:45 ` [PATCH mtd/next 5/8] mtd: mtdblock_ro: " Dejin Zheng
2021-02-13 16:45   ` Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal
2021-02-13 16:45 ` Dejin Zheng [this message]
2021-02-13 16:45   ` [PATCH mtd/next 6/8] mtd: mtdswap: " Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal
2021-02-13 16:45 ` [PATCH mtd/next 7/8] mtd: nftlcore: " Dejin Zheng
2021-02-13 16:45   ` Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal
2021-02-13 16:46 ` [PATCH mtd/next 8/8] mtd: rfd_ftl: " Dejin Zheng
2021-02-13 16:46   ` Dejin Zheng
2021-03-02 17:14   ` Miquel Raynal
2021-03-02 17:14     ` Miquel Raynal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210213164600.409061-7-zhengdejin5@gmail.com \
    --to=zhengdejin5@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=miquel.raynal@bootlin.com \
    --cc=nixiaoming@huawei.com \
    --cc=richard@nod.at \
    --cc=vigneshr@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.