mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
MIPS: Loongson64: Add of_node_put() before break
Fix following coccicheck warning: ./arch/mips/loongson64/init.c:174:1-22: WARNING: Function for_each_node_by_name should have of_node_put() before break Early exits from for_each_node_by_name should decrement the node reference counter. Signed-off-by: Wan Jiabing <wanjiabing@vivo.com> Reviewed-by: Huacai Chen <chenhuacai@kernel.org> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
parent
4beaeb5f11
commit
169dd5f08a
@ -177,6 +177,7 @@ static __init void reserve_pio_range(void)
|
||||
|
||||
if (of_range_parser_init(&parser, np)) {
|
||||
pr_info("Failed to parse resources.\n");
|
||||
of_node_put(np);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user