mainboard/hp/dl145_g3: Fix coding style
Change-Id: I78b43cbc052e6d243d67ca8cdd86b242e477a2c7 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/23532 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
cc1e3b64ed
commit
66f1bd2085
|
@ -68,7 +68,8 @@ void get_bus_conf(void)
|
||||||
int i;
|
int i;
|
||||||
struct mb_sysconf_t *m;
|
struct mb_sysconf_t *m;
|
||||||
|
|
||||||
if(get_bus_conf_done == 1) return; //do it only once
|
if (get_bus_conf_done == 1)
|
||||||
|
return; //do it only once
|
||||||
|
|
||||||
get_bus_conf_done = 1;
|
get_bus_conf_done = 1;
|
||||||
|
|
||||||
|
@ -100,10 +101,9 @@ void get_bus_conf(void)
|
||||||
printk(BIOS_DEBUG, "secondary is %d...\n",m->bus_bcm5785_1);
|
printk(BIOS_DEBUG, "secondary is %d...\n",m->bus_bcm5785_1);
|
||||||
dev = dev_find_slot(m->bus_bcm5785_1, PCI_DEVFN(0xd,0));
|
dev = dev_find_slot(m->bus_bcm5785_1, PCI_DEVFN(0xd,0));
|
||||||
printk(BIOS_DEBUG, "now found %s...\n",dev_path(dev));
|
printk(BIOS_DEBUG, "now found %s...\n",dev_path(dev));
|
||||||
if(dev) {
|
if (dev)
|
||||||
m->bus_bcm5785_1_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
|
m->bus_bcm5785_1_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_bcm5785_0, sysconf.sbdn);
|
printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_bcm5785_0, sysconf.sbdn);
|
||||||
}
|
}
|
||||||
|
@ -111,13 +111,11 @@ void get_bus_conf(void)
|
||||||
/* bcm5780 */
|
/* bcm5780 */
|
||||||
for (i = 1; i < 6; i++) {
|
for (i = 1; i < 6; i++) {
|
||||||
dev = dev_find_slot(m->bus_bcm5780[0], PCI_DEVFN(m->sbdn2 + i - 1,0));
|
dev = dev_find_slot(m->bus_bcm5780[0], PCI_DEVFN(m->sbdn2 + i - 1,0));
|
||||||
if(dev) {
|
if (dev)
|
||||||
m->bus_bcm5780[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
|
m->bus_bcm5780[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
|
||||||
}
|
else
|
||||||
else {
|
|
||||||
printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_bcm5780[0], m->sbdn2+i-1);
|
printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_bcm5780[0], m->sbdn2+i-1);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*I/O APICs: APIC ID Version State Address*/
|
/*I/O APICs: APIC ID Version State Address*/
|
||||||
|
|
Loading…
Reference in New Issue