aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/msi/ms9282/get_bus_conf.c
diff options
context:
space:
mode:
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);
}
}