mainboard/msi/ms9282: Remove trailing whitespace

Change-Id: I93808f7798a18ab0993401af556fbb65dbcee32a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: http://review.coreboot.org/6347
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
diff --git a/src/mainboard/msi/ms9282/get_bus_conf.c b/src/mainboard/msi/ms9282/get_bus_conf.c
index 4ab124d..195ddc4 100644
--- a/src/mainboard/msi/ms9282/get_bus_conf.c
+++ b/src/mainboard/msi/ms9282/get_bus_conf.c
@@ -101,21 +101,21 @@
 		m->bus_mcp55[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
 	} else {
 		printk(BIOS_DEBUG,
-		       "ERROR - could not find PCI 1:%02x.0, using defaults\n",
-		       sysconf.sbdn + 0x06);
+			"ERROR - could not find PCI 1:%02x.0, using defaults\n",
+			sysconf.sbdn + 0x06);
 	}
 
 	for (i = 2; i < 8; i++) {
 		dev =
-		    dev_find_slot(m->bus_mcp55[0],
-				  PCI_DEVFN(sysconf.sbdn + 0x0a + i - 2, 0));
+			dev_find_slot(m->bus_mcp55[0],
+				PCI_DEVFN(sysconf.sbdn + 0x0a + i - 2, 0));
 		if (dev) {
 			m->bus_mcp55[i] =
-			    pci_read_config8(dev, PCI_SECONDARY_BUS);
+				pci_read_config8(dev, PCI_SECONDARY_BUS);
 		} else {
 			printk(BIOS_DEBUG,
-			       "ERROR - could not find PCI %02x:%02x.0, using defaults\n",
-			       m->bus_mcp55[0], sysconf.sbdn + 0x0a + i - 2);
+				"ERROR - could not find PCI %02x:%02x.0, using defaults\n",
+				m->bus_mcp55[0], sysconf.sbdn + 0x0a + i - 2);
 		}
 	}