/: Remove extra space after comma

Change-Id: Ic64625bdaf8c4e9f8a5c1c22cece7f4070012da7
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69903
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/arch/x86/pirq_routing.c b/src/arch/x86/pirq_routing.c
index 0da057f..0a1e75d 100644
--- a/src/arch/x86/pirq_routing.c
+++ b/src/arch/x86/pirq_routing.c
@@ -164,7 +164,7 @@
 	}
 
 	for (i = 0; i < CONFIG_MAX_PIRQ_LINKS; i++)
-		printk(BIOS_DEBUG, "PIRQ%c: %d\n", i + 'A',  pirq[i]);
+		printk(BIOS_DEBUG, "PIRQ%c: %d\n", i + 'A', pirq[i]);
 
 	pirq_assign_irqs(pirq);
 }
diff --git a/src/drivers/intel/gma/intel_ddi.c b/src/drivers/intel/gma/intel_ddi.c
index 24bc162..6c6d13e 100644
--- a/src/drivers/intel/gma/intel_ddi.c
+++ b/src/drivers/intel/gma/intel_ddi.c
@@ -48,7 +48,7 @@
 				 hsw_ddi_translations_fdi :
 				 hsw_ddi_translations_dp);
 
-	printk(BIOS_SPEW,  "Initializing DDI buffers for port %d in %s mode\n",
+	printk(BIOS_SPEW, "Initializing DDI buffers for port %d in %s mode\n",
 	       port,
 	       use_fdi_mode ? "FDI" : "DP");
 
diff --git a/src/lib/selfboot.c b/src/lib/selfboot.c
index 637ad13..e21c493 100644
--- a/src/lib/selfboot.c
+++ b/src/lib/selfboot.c
@@ -93,7 +93,7 @@
 		break;
 	}
 	default:
-		printk(BIOS_INFO,  "CBFS:  Unknown compression type %d\n", compression);
+		printk(BIOS_INFO, "CBFS:  Unknown compression type %d\n", compression);
 		return 0;
 	}
 	/* Calculate middle after any changes to len. */
diff --git a/src/security/vboot/secdata_tpm.c b/src/security/vboot/secdata_tpm.c
index 7885069..844b28d 100644
--- a/src/security/vboot/secdata_tpm.c
+++ b/src/security/vboot/secdata_tpm.c
@@ -15,7 +15,7 @@
 #include <console/console.h>
 
 #define VBDEBUG(format, args...) \
-	printk(BIOS_INFO, "%s():%d: " format,  __func__, __LINE__, ## args)
+	printk(BIOS_INFO, "%s():%d: " format, __func__, __LINE__, ## args)
 
 #define RETURN_ON_FAILURE(tpm_cmd) do {				\
 		uint32_t result_;					\
diff --git a/src/soc/intel/broadwell/pch/pcie.c b/src/soc/intel/broadwell/pch/pcie.c
index b37f256..61d6962 100644
--- a/src/soc/intel/broadwell/pch/pcie.c
+++ b/src/soc/intel/broadwell/pch/pcie.c
@@ -295,7 +295,7 @@
 		if (dev->enabled)
 			continue;
 
-		printk(BIOS_DEBUG, "%s: Disabling device\n",  dev_path(dev));
+		printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
 
 		/* 8.2 Configuration of PCI Express Root Ports */
 		pci_or_config32(dev, 0x338, 1 << 26);
diff --git a/src/soc/samsung/exynos5420/dp_lowlevel.c b/src/soc/samsung/exynos5420/dp_lowlevel.c
index 0cd6483..2d33873 100644
--- a/src/soc/samsung/exynos5420/dp_lowlevel.c
+++ b/src/soc/samsung/exynos5420/dp_lowlevel.c
@@ -229,7 +229,7 @@
 				CH2_PD | CH3_PD);
 		break;
 	default:
-		printk(BIOS_ERR, "DP undefined block number : %d\n",  block);
+		printk(BIOS_ERR, "DP undefined block number : %d\n", block);
 		return -1;
 	}
 
diff --git a/src/southbridge/intel/bd82x6x/pch.c b/src/southbridge/intel/bd82x6x/pch.c
index d24604c..16ffaf5 100644
--- a/src/southbridge/intel/bd82x6x/pch.c
+++ b/src/southbridge/intel/bd82x6x/pch.c
@@ -327,7 +327,7 @@
 	}
 
 	if (!dev->enabled) {
-		printk(BIOS_DEBUG, "%s: Disabling device\n",  dev_path(dev));
+		printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
 
 		/*
 		 * PCIE Power Savings for PantherPoint and CougarPoint/B1+
@@ -408,7 +408,7 @@
 		return pch_pcie_enable(dev);
 
 	if (!dev->enabled) {
-		printk(BIOS_DEBUG, "%s: Disabling device\n",  dev_path(dev));
+		printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
 
 		/* Ensure memory, io, and bus master are all disabled */
 		pci_and_config16(dev, PCI_COMMAND,
diff --git a/src/southbridge/intel/i82801gx/i82801gx.c b/src/southbridge/intel/i82801gx/i82801gx.c
index 6d4e7115..4783099 100644
--- a/src/southbridge/intel/i82801gx/i82801gx.c
+++ b/src/southbridge/intel/i82801gx/i82801gx.c
@@ -56,7 +56,7 @@
 	u16 reg16;
 
 	if (!dev->enabled) {
-		printk(BIOS_DEBUG, "%s: Disabling device\n",  dev_path(dev));
+		printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
 
 		/* Ensure memory, io, and bus master are all disabled */
 		reg16 = pci_read_config16(dev, PCI_COMMAND);
diff --git a/src/southbridge/intel/lynxpoint/pch.c b/src/southbridge/intel/lynxpoint/pch.c
index 8f7cdb8..f83f3f6 100644
--- a/src/southbridge/intel/lynxpoint/pch.c
+++ b/src/southbridge/intel/lynxpoint/pch.c
@@ -185,7 +185,7 @@
 		return;
 
 	if (!dev->enabled) {
-		printk(BIOS_DEBUG, "%s: Disabling device\n",  dev_path(dev));
+		printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
 
 		/* Ensure memory, io, and bus master are all disabled */
 		pci_and_config16(dev, PCI_COMMAND,
diff --git a/src/southbridge/intel/lynxpoint/pcie.c b/src/southbridge/intel/lynxpoint/pcie.c
index 24fab3b..2f01560 100644
--- a/src/southbridge/intel/lynxpoint/pcie.c
+++ b/src/southbridge/intel/lynxpoint/pcie.c
@@ -322,7 +322,7 @@
 		if (dev->enabled)
 			continue;
 
-		printk(BIOS_DEBUG, "%s: Disabling device\n",  dev_path(dev));
+		printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
 
 		/* Ensure memory, io, and bus master are all disabled */
 		pci_and_config16(dev, PCI_COMMAND,