mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
fdt: Fixup only valid memory banks
Memory banks with address 0 and size 0 are empty and should not be passed to the OS via device tree. Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
@@ -447,6 +447,13 @@ int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
|
||||
return err;
|
||||
}
|
||||
|
||||
for (i = 0; i < banks; i++) {
|
||||
if (start[i] == 0 && size[i] == 0)
|
||||
break;
|
||||
}
|
||||
|
||||
banks = i;
|
||||
|
||||
if (!banks)
|
||||
return 0;
|
||||
|
||||
|
Reference in New Issue
Block a user