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:
parent
78b7d37b1b
commit
ed5af03f9b
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user