Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: andrew.smirnov@gmail.com (Andrey Smirnov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 11/20] nvmem: meson-efuse: Convert to use devm_nvmem_register()
Date: Wed, 27 Dec 2017 14:59:47 -0800	[thread overview]
Message-ID: <20171227225956.14442-12-andrew.smirnov@gmail.com> (raw)
In-Reply-To: <20171227225956.14442-1-andrew.smirnov@gmail.com>

Drop all of the code related to .remove hook and make use of
devm_nvmem_register() instead.

Cc: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Cc: Heiko Stuebner <heiko@sntech.de>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Carlo Caione <carlo@caione.org>
Cc: Kevin Hilman <khilman@baylibre.com>
Cc: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Joachim Eastwood <manabian@gmail.com>
Cc: cphealy at gmail.com
Cc: linux-kernel at vger.kernel.org
Cc: linux-mediatek at lists.infradead.org
Cc: linux-rockchip at lists.infradead.org
Cc: linux-amlogic at lists.infradead.org
Cc: linux-arm-kernel at lists.infradead.org
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 drivers/nvmem/meson-efuse.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/drivers/nvmem/meson-efuse.c b/drivers/nvmem/meson-efuse.c
index a43c68f90937..02ec2873e583 100644
--- a/drivers/nvmem/meson-efuse.c
+++ b/drivers/nvmem/meson-efuse.c
@@ -60,22 +60,13 @@ static int meson_efuse_probe(struct platform_device *pdev)
 	econfig.reg_read = meson_efuse_read;
 	econfig.size = size;
 
-	nvmem = nvmem_register(&econfig);
+	nvmem = devm_nvmem_register(&pdev->dev, &econfig);
 	if (IS_ERR(nvmem))
 		return PTR_ERR(nvmem);
 
-	platform_set_drvdata(pdev, nvmem);
-
 	return 0;
 }
 
-static int meson_efuse_remove(struct platform_device *pdev)
-{
-	struct nvmem_device *nvmem = platform_get_drvdata(pdev);
-
-	return nvmem_unregister(nvmem);
-}
-
 static struct platform_driver meson_efuse_driver = {
 	.probe = meson_efuse_probe,
 	.remove = meson_efuse_remove,
-- 
2.14.3

  parent reply	other threads:[~2017-12-27 22:59 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-27 22:59 [PATCH 00/20] Verbatim device names and devm_nvmem_(un)register() Andrey Smirnov
2017-12-27 22:59 ` [PATCH 01/20] nvmem: core: Allow specifying device name verbatim Andrey Smirnov
2017-12-27 22:59 ` [PATCH 02/20] nvmem: Introduce devm_nvmem_(un)register() Andrey Smirnov
2017-12-27 22:59 ` [PATCH 03/20] nvmem: vf610-ocotp: Convert to use devm_nvmem_register() Andrey Smirnov
2017-12-27 22:59 ` [PATCH 04/20] nvmem: imx-ocotp: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 05/20] nvmem: uniphier-efuse: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 06/20] nvmem: snvs_lgpr: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 07/20] nvmem: rockchip-efuse: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 08/20] nvmem: qfprom: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 09/20] nvmem: mtk-efuse: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 10/20] nvmem: meson-mx-efuse: " Andrey Smirnov
2017-12-27 22:59 ` Andrey Smirnov [this message]
2017-12-30  6:38   ` [PATCH 11/20] nvmem: meson-efuse: " kbuild test robot
2017-12-27 22:59 ` [PATCH 12/20] nvmem: lpc18xx_otp: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 13/20] nvmem: imx-iim: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 14/20] nvmem: bcm-ocotp: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 15/20] nvmem: snvs_lpgpr: Convert commas to semicolons Andrey Smirnov
2017-12-27 22:59 ` [PATCH 16/20] nvmem: rockchip-efuse: Make use of of_device_get_match_data() Andrey Smirnov
2017-12-27 22:59 ` [PATCH 17/20] nvmem: vf610-ocotp: Do not use "&pdev->dev" explicitly Andrey Smirnov
2017-12-27 22:59 ` [PATCH 18/20] nvmem: rockchip-efuse: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 19/20] nvmem: imx-iim: " Andrey Smirnov
2017-12-27 22:59 ` [PATCH 20/20] nvmem: bcm-ocotp: " Andrey Smirnov

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=20171227225956.14442-12-andrew.smirnov@gmail.com \
    --to=andrew.smirnov@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox