lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20171227225956.14442-4-andrew.smirnov@gmail.com> Date: Wed, 27 Dec 2017 14:59:39 -0800 From: Andrey Smirnov <andrew.smirnov@...il.com> To: Srinivas Kandagatla <srinivas.kandagatla@...aro.org> Cc: Andrey Smirnov <andrew.smirnov@...il.com>, Heiko Stuebner <heiko@...ech.de>, Masahiro Yamada <yamada.masahiro@...ionext.com>, Carlo Caione <carlo@...one.org>, Kevin Hilman <khilman@...libre.com>, Matthias Brugger <matthias.bgg@...il.com>, Joachim Eastwood <manabian@...il.com>, cphealy@...il.com, linux-kernel@...r.kernel.org, linux-mediatek@...ts.infradead.org, linux-rockchip@...ts.infradead.org, linux-amlogic@...ts.infradead.org, linux-arm-kernel@...ts.infradead.org Subject: [PATCH 03/20] nvmem: vf610-ocotp: Convert to use devm_nvmem_register() Drop all of the code related to .remove hook and make use of devm_nvmem_register() instead. Cc: Srinivas Kandagatla <srinivas.kandagatla@...aro.org> Cc: Heiko Stuebner <heiko@...ech.de> Cc: Masahiro Yamada <yamada.masahiro@...ionext.com> Cc: Carlo Caione <carlo@...one.org> Cc: Kevin Hilman <khilman@...libre.com> Cc: Matthias Brugger <matthias.bgg@...il.com> Cc: Joachim Eastwood <manabian@...il.com> Cc: cphealy@...il.com Cc: linux-kernel@...r.kernel.org Cc: linux-mediatek@...ts.infradead.org Cc: linux-rockchip@...ts.infradead.org Cc: linux-amlogic@...ts.infradead.org Cc: linux-arm-kernel@...ts.infradead.org Signed-off-by: Andrey Smirnov <andrew.smirnov@...il.com> --- drivers/nvmem/vf610-ocotp.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/drivers/nvmem/vf610-ocotp.c b/drivers/nvmem/vf610-ocotp.c index 5ae9e002f195..752a0983e7fb 100644 --- a/drivers/nvmem/vf610-ocotp.c +++ b/drivers/nvmem/vf610-ocotp.c @@ -217,13 +217,6 @@ static const struct of_device_id ocotp_of_match[] = { }; MODULE_DEVICE_TABLE(of, ocotp_of_match); -static int vf610_ocotp_remove(struct platform_device *pdev) -{ - struct vf610_ocotp *ocotp_dev = platform_get_drvdata(pdev); - - return nvmem_unregister(ocotp_dev->nvmem); -} - static int vf610_ocotp_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; @@ -251,13 +244,11 @@ static int vf610_ocotp_probe(struct platform_device *pdev) ocotp_config.priv = ocotp_dev; ocotp_config.dev = dev; - ocotp_dev->nvmem = nvmem_register(&ocotp_config); + ocotp_dev->nvmem = devm_nvmem_register(dev, &ocotp_config); if (IS_ERR(ocotp_dev->nvmem)) return PTR_ERR(ocotp_dev->nvmem); ocotp_dev->dev = dev; - platform_set_drvdata(pdev, ocotp_dev); - ocotp_dev->timing = vf610_ocotp_calculate_timing(ocotp_dev); return 0; @@ -265,7 +256,6 @@ static int vf610_ocotp_probe(struct platform_device *pdev) static struct platform_driver vf610_ocotp_driver = { .probe = vf610_ocotp_probe, - .remove = vf610_ocotp_remove, .driver = { .name = "vf610-ocotp", .of_match_table = ocotp_of_match, -- 2.14.3
Powered by blists - more mailing lists