projects
/
wrapfs-4.14.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
494be89
)
mtd: spi-nor: hisi-sfc: Put child node np on error path
author
Pan Bian
<bianpan2016@163.com>
Thu, 21 Jan 2021 09:18:47 +0000
(
01:18
-0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 3 Mar 2021 17:22:54 +0000
(18:22 +0100)
commit
fe6653460ee7a7dbe0cd5fd322992af862ce5ab0
upstream.
Put the child node np when it fails to get or register device.
Fixes: e523f11141bd ("mtd: spi-nor: add hisilicon spi-nor flash controller driver")
Cc: stable@vger.kernel.org
Signed-off-by: Pan Bian <bianpan2016@163.com>
[ta: Add Fixes tag and Cc stable]
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Link:
https://lore.kernel.org/r/20210121091847.85362-1-bianpan2016@163.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/mtd/spi-nor/hisi-sfc.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/spi-nor/hisi-sfc.c
b/drivers/mtd/spi-nor/hisi-sfc.c
index 04f9fb5cd9b6f4fcdf8f45c63ad7e75993462421..9209d225e3152cb0c691042089f293ed459babac 100644
(file)
--- a/
drivers/mtd/spi-nor/hisi-sfc.c
+++ b/
drivers/mtd/spi-nor/hisi-sfc.c
@@
-408,8
+408,10
@@
static int hisi_spi_nor_register_all(struct hifmc_host *host)
for_each_available_child_of_node(dev->of_node, np) {
ret = hisi_spi_nor_register(np, host);
- if (ret)
+ if (ret) {
+ of_node_put(np);
goto fail;
+ }
if (host->num_chip == HIFMC_MAX_CHIP_NUM) {
dev_warn(dev, "Flash device number exceeds the maximum chipselect number\n");