mtd: spi-nor: hisi-sfc: Add of_node_put() before break

Each iteration of for_each_available_child_of_node puts the previous
node, but in the case of a break from the middle of the loop, there
is no put, thus causing a memory leak. Hence add an of_node_put before
the break.
Issue found with Coccinelle.

Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
This commit is contained in:
Nishka Dasgupta 2019-08-15 11:33:34 +05:30 committed by Tudor Ambarus
parent 6597f0b051
commit 7ae2227b1c
No known key found for this signature in database
GPG key ID: 4B554F47A58D14E9

View file

@ -401,6 +401,7 @@ static int hisi_spi_nor_register_all(struct hifmc_host *host)
if (host->num_chip == HIFMC_MAX_CHIP_NUM) {
dev_warn(dev, "Flash device number exceeds the maximum chipselect number\n");
of_node_put(np);
break;
}
}