mtd: spi-nor: hisi-sfc: Add of_node_put() before break
authorNishka Dasgupta <nishkadg.linux@gmail.com>
Thu, 15 Aug 2019 06:03:34 +0000 (11:33 +0530)
committerTudor Ambarus <tudor.ambarus@microchip.com>
Wed, 28 Aug 2019 09:40:31 +0000 (12:40 +0300)
commit7ae2227b1c1928cfc8220ca6383c757b185fcf32
tree082bd363b65b5491995c66513a697c707003faa7
parent6597f0b0516ab078b9ed2df4dd9aea17275995cd
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>
drivers/mtd/spi-nor/hisi-sfc.c