Browse Source

Merge "fix(allwinner): dtb: check for correct error condition" into integration

pull/1996/merge
André Przywara 3 months ago
committed by TrustedFirmware Code Review
parent
commit
80cd7dd1bb
  1. 2
      plat/allwinner/sun50i_h616/sunxi_h616_dtb.c

2
plat/allwinner/sun50i_h616/sunxi_h616_dtb.c

@ -52,7 +52,7 @@ void sunxi_soc_fdt_fixup(void *dtb)
}
node = fdt_node_offset_by_phandle(dtb, phandle);
if (ret != 0) {
if (node < 0) {
return;
}

Loading…
Cancel
Save