2020-02-17 14:15:23

by Khouloud Touil

[permalink] [raw]
Subject: [PATCH] nvmem: release the write-protect pin

Implement the auto-release of the write-protect pin that when the
registration fails, it's auto-released.

Fixes: 2a127da461a9 ("nvmem: add support for the write-protect pin")
Reported-by: [email protected]
Signed-off-by: Khouloud Touil <[email protected]>
---
drivers/nvmem/core.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
index ef326f243f36..5f1988498d75 100644
--- a/drivers/nvmem/core.c
+++ b/drivers/nvmem/core.c
@@ -72,6 +72,7 @@ static void nvmem_release(struct device *dev)
struct nvmem_device *nvmem = to_nvmem_device(dev);

ida_simple_remove(&nvmem_ida, nvmem->id);
+ gpiod_put(nvmem->wp_gpio);
kfree(nvmem);
}

--
2.17.1