Browse Source

Merge "fix(xilinx): don't reserve 1 more byte" into integration

pull/2003/head
Joanna Farley 1 year ago
committed by TrustedFirmware Code Review
parent
commit
bf2fa7e36d
  1. 2
      plat/xilinx/common/plat_fdt.c

2
plat/xilinx/common/plat_fdt.c

@ -37,7 +37,7 @@ void prepare_dtb(void)
}
/* Reserve memory used by Trusted Firmware. */
if (fdt_add_reserved_memory(dtb, "tf-a", BL31_BASE, BL31_LIMIT - BL31_BASE + 1)) {
if (fdt_add_reserved_memory(dtb, "tf-a", BL31_BASE, BL31_LIMIT - BL31_BASE)) {
WARN("Failed to add reserved memory nodes for BL31 to DT.\n");
return;
}

Loading…
Cancel
Save