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-15-andrew.smirnov@gmail.com> Date: Wed, 27 Dec 2017 14:59:50 -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 14/20] nvmem: bcm-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/bcm-ocotp.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/drivers/nvmem/bcm-ocotp.c b/drivers/nvmem/bcm-ocotp.c index 5e9e324427f9..24c30fa475cc 100644 --- a/drivers/nvmem/bcm-ocotp.c +++ b/drivers/nvmem/bcm-ocotp.c @@ -302,27 +302,17 @@ static int bcm_otpc_probe(struct platform_device *pdev) priv->config = &bcm_otpc_nvmem_config; - nvmem = nvmem_register(&bcm_otpc_nvmem_config); + nvmem = devm_nvmem_register(dev, &bcm_otpc_nvmem_config); if (IS_ERR(nvmem)) { dev_err(dev, "error registering nvmem config\n"); return PTR_ERR(nvmem); } - platform_set_drvdata(pdev, nvmem); - return 0; } -static int bcm_otpc_remove(struct platform_device *pdev) -{ - struct nvmem_device *nvmem = platform_get_drvdata(pdev); - - return nvmem_unregister(nvmem); -} - static struct platform_driver bcm_otpc_driver = { .probe = bcm_otpc_probe, - .remove = bcm_otpc_remove, .driver = { .name = "brcm-otpc", .of_match_table = bcm_otpc_dt_ids, -- 2.14.3
Powered by blists - more mailing lists