soc/amd/common/data_fabric/domain: drop unneeded parenthesis
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I84a7b7b1b2c45b773c6f10b39e7813db3f96546e Reviewed-on: https://review.coreboot.org/c/coreboot/+/80408 Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
bf76998c96
commit
e04ee222d5
|
@ -279,7 +279,7 @@ void amd_pci_domain_fill_ssdt(const struct device *domain)
|
||||||
continue;
|
continue;
|
||||||
/* Don't add MMIO producer ranges for reserved MMIO regions from non-PCI
|
/* Don't add MMIO producer ranges for reserved MMIO regions from non-PCI
|
||||||
devices */
|
devices */
|
||||||
if ((res->flags & IORESOURCE_RESERVE))
|
if (res->flags & IORESOURCE_RESERVE)
|
||||||
continue;
|
continue;
|
||||||
/* Don't add MMIO producer ranges for DRAM regions */
|
/* Don't add MMIO producer ranges for DRAM regions */
|
||||||
if (res->flags & IORESOURCE_STORED)
|
if (res->flags & IORESOURCE_STORED)
|
||||||
|
|
Loading…
Reference in New Issue