diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-02-07 21:41:43 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-02-08 21:26:38 +0000 |
commit | e04ee222d5f302497b2023eedf29b1d728aead51 (patch) | |
tree | 4f54666c4a3a15b750663c6cb65710719019c5fe /src/soc | |
parent | bf76998c965ff6427031d480bb27bcae998ff87d (diff) |
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>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/amd/common/block/data_fabric/domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/data_fabric/domain.c b/src/soc/amd/common/block/data_fabric/domain.c index afe79fe8ca..ab85e2b592 100644 --- a/src/soc/amd/common/block/data_fabric/domain.c +++ b/src/soc/amd/common/block/data_fabric/domain.c @@ -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) |