> @@ -285,12 +286,14 @@  static int __init hip04_smp_init(void)
>       if (!np_sctl)
>               goto err;
>       np_fab = of_find_compatible_node(NULL, NULL, "hisilicon,hip04-fabric");
> -     if (!np_fab)
> +     if (!np_fab) {
> +             of_node_put(np_sctl);
>               goto err;

I suggest to adjust this source code place in a different way.

        if (!np_fab)
+               goto put_sctl_node;


> +     }
>
>       ret = memblock_reserve(hip04_boot_method[0], hip04_boot_method[1]);
>       if (ret)
> -             goto err;
> +             goto err_put_node;

How do you think about to use the jump label “put_fab_node” instead?


>
>       relocation = ioremap(hip04_boot_method[2], hip04_boot_method[3]);


Regards,
Markus

Reply via email to