aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/msi/ms9282/get_bus_conf.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2014-07-23 09:23:29 +0200
committerPatrick Georgi <patrick@georgi-clan.de>2014-07-24 12:42:52 +0200
commitd36905cdd586b782db6bf3d76e8622794b4a0bb9 (patch)
tree97e9b0f6bd58fe01b6d9f46b656d12ff77a58809 /src/mainboard/msi/ms9282/get_bus_conf.c
parent23fa3c245a62a1af8604b3522fbebf23b2525bf9 (diff)
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>
Diffstat (limited to 'src/mainboard/msi/ms9282/get_bus_conf.c')
-rw-r--r--src/mainboard/msi/ms9282/get_bus_conf.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/msi/ms9282/get_bus_conf.c b/src/mainboard/msi/ms9282/get_bus_conf.c
index 4ab124d5fc..195ddc4fce 100644
--- a/src/mainboard/msi/ms9282/get_bus_conf.c
+++ b/src/mainboard/msi/ms9282/get_bus_conf.c
@@ -101,21 +101,21 @@ void get_bus_conf(void)
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);
}
}