mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
dm: pci: Avoid setting a PCI region that has 0 size
It makes no sense to set a PCI region that has 0 size. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
1eaf7800b6
commit
ee1109bb45
1 changed files with 3 additions and 2 deletions
|
@ -897,8 +897,9 @@ static int decode_regions(struct pci_controller *hose, ofnode parent_node,
|
|||
#endif
|
||||
if (gd->pci_ram_top && gd->pci_ram_top < base + size)
|
||||
size = gd->pci_ram_top - base;
|
||||
pci_set_region(hose->regions + hose->region_count++, base, base,
|
||||
size, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
|
||||
if (size)
|
||||
pci_set_region(hose->regions + hose->region_count++, base,
|
||||
base, size, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue