nb/intel: Remove space between function name and '('

Change-Id: Ibffaf86f9e32d747c8f2f7a3643df8935fb00047
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77763
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
diff --git a/src/northbridge/intel/ironlake/quickpath.c b/src/northbridge/intel/ironlake/quickpath.c
index 56cd14b..8a0e01c 100644
--- a/src/northbridge/intel/ironlake/quickpath.c
+++ b/src/northbridge/intel/ironlake/quickpath.c
@@ -611,9 +611,9 @@
 	if (deven & 8) {
 		mchbar_setbits32(0xff8, 3 << 11);
 		mchbar_clrbits32(0x2cb0, ~0);
-		pci_read_config8(PCI_DEV (0, 0x2, 0x0), 0x4c);
-		pci_read_config8(PCI_DEV (0, 0x2, 0x0), 0x4c);
-		pci_read_config8(PCI_DEV (0, 0x2, 0x0), 0x4e);
+		pci_read_config8(PCI_DEV(0, 0x2, 0x0), 0x4c);
+		pci_read_config8(PCI_DEV(0, 0x2, 0x0), 0x4c);
+		pci_read_config8(PCI_DEV(0, 0x2, 0x0), 0x4e);
 
 		mchbar_read8(0x1150);
 		mchbar_read8(0x1151);
diff --git a/src/northbridge/intel/ironlake/raminit.c b/src/northbridge/intel/ironlake/raminit.c
index e1482be..8a934ed 100644
--- a/src/northbridge/intel/ironlake/raminit.c
+++ b/src/northbridge/intel/ironlake/raminit.c
@@ -34,7 +34,7 @@
 
 #define NORTHBRIDGE PCI_DEV(0, 0, 0)
 #define SOUTHBRIDGE PCI_DEV(0, 0x1f, 0)
-#define GMA PCI_DEV (0, 0x2, 0x0)
+#define GMA PCI_DEV(0, 0x2, 0x0)
 
 #define FOR_ALL_RANKS					   \
   for (channel = 0; channel < NUM_CHANNELS; channel++)	   \
@@ -134,7 +134,7 @@
 	return in;
 }
 
-#define gav(x) gav_real (__LINE__, (x))
+#define gav(x) gav_real(__LINE__, (x))
 
 /* Global allocation of timings_car */
 timing_bounds_t timings_car[64];