summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/torpedo/get_bus_conf.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-15 14:38:51 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-24 13:58:00 +0200
commit99c636f8581626c527ef5434738883feae06dbc2 (patch)
treec032ac70edb53b22b4ab55ad16771942d751c6c6 /src/mainboard/amd/torpedo/get_bus_conf.c
parentda6d8b1048a4d804cb82b71e640b4ec2db7a4c79 (diff)
downloadcoreboot-99c636f8581626c527ef5434738883feae06dbc2.tar.xz
AGESA boards: Drop global bus_isa
Only ever used as lvalue (except when incrementing) so this global is unused. Change-Id: I616721f937eb0bfdb28f356284efd70f99ccd2dd Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/6330 Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/amd/torpedo/get_bus_conf.c')
-rw-r--r--src/mainboard/amd/torpedo/get_bus_conf.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mainboard/amd/torpedo/get_bus_conf.c b/src/mainboard/amd/torpedo/get_bus_conf.c
index 1e962e83e8..3f8f50ed99 100644
--- a/src/mainboard/amd/torpedo/get_bus_conf.c
+++ b/src/mainboard/amd/torpedo/get_bus_conf.c
@@ -29,7 +29,6 @@
/* Global variables for MB layouts and these will be shared by irqtable mptable
* and acpi_tables busnum is default.
*/
-u8 bus_isa;
u8 bus_sb900[6];
/*
@@ -71,8 +70,6 @@ void get_bus_conf(void)
if (dev) {
bus_sb900[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
- bus_isa = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
- bus_isa++;
}
for (i = 0; i < 4; i++) {
@@ -81,13 +78,8 @@ void get_bus_conf(void)
if (dev) {
bus_sb900[2 + i] =
pci_read_config8(dev, PCI_SECONDARY_BUS);
- bus_isa = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
- bus_isa++;
}
}
- /* I/O APICs: APIC ID Version State Address */
- bus_isa = 10;
-
printk(BIOS_DEBUG, "Mainboard - %s - %s - End.\n", __FILE__, __func__);
}