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>
diff --git a/src/soc/amd/common/block/data_fabric/domain.c b/src/soc/amd/common/block/data_fabric/domain.c
index afe79fe..ab85e2b5 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 @@
 			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)