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

Cc: Srinivas Kandagatla <[email protected]>
Cc: Heiko Stuebner <[email protected]>
Cc: Masahiro Yamada <[email protected]>
Cc: Carlo Caione <[email protected]>
Cc: Kevin Hilman <[email protected]>
Cc: Matthias Brugger <[email protected]>
Cc: Joachim Eastwood <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Andrey Smirnov <[email protected]>
---
 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

Reply via email to