Reviewed-by: Huacai Chen <chenhuacai@xxxxxxxxxx> On Fri, Oct 15, 2021 at 3:01 PM Wan Jiabing <wanjiabing@xxxxxxxx> wrote: > > 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@xxxxxxxx> > --- > arch/mips/loongson64/init.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/mips/loongson64/init.c b/arch/mips/loongson64/init.c > index 4ac5ba80bbf6..ee8de1735b7c 100644 > --- a/arch/mips/loongson64/init.c > +++ b/arch/mips/loongson64/init.c > @@ -179,6 +179,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; > } > > -- > 2.20.1 >