diff options
author | Pan Bian <bianpan2016@163.com> | 2021-01-21 01:18:47 -0800 |
---|---|---|
committer | Tudor Ambarus <tudor.ambarus@microchip.com> | 2021-01-23 14:49:52 +0200 |
commit | fe6653460ee7a7dbe0cd5fd322992af862ce5ab0 (patch) | |
tree | 5b00db3b127ca20ed13c1d24351fd70c1074915f /drivers/mtd | |
parent | d5802468c358cd421c09355467be36a41ea5b5d6 (diff) | |
download | linux-next-fe6653460ee7a7dbe0cd5fd322992af862ce5ab0.tar.gz |
mtd: spi-nor: hisi-sfc: Put child node np on error path
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
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/spi-nor/controllers/hisi-sfc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/controllers/hisi-sfc.c b/drivers/mtd/spi-nor/controllers/hisi-sfc.c index 7c26f8f565cb..47fbf1d1e557 100644 --- a/drivers/mtd/spi-nor/controllers/hisi-sfc.c +++ b/drivers/mtd/spi-nor/controllers/hisi-sfc.c @@ -399,8 +399,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"); |