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:
Felix Held 2024-02-07 21:41:43 +01:00
parent bf76998c96
commit e04ee222d5
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ void amd_pci_domain_fill_ssdt(const struct device *domain)
continue;
/* Don't add MMIO producer ranges for reserved MMIO regions from non-PCI
devices */
if ((res->flags & IORESOURCE_RESERVE))
if (res->flags & IORESOURCE_RESERVE)
continue;
/* Don't add MMIO producer ranges for DRAM regions */
if (res->flags & IORESOURCE_STORED)