diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2010-11-21 14:41:07 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-11-21 14:41:07 +0000 |
commit | 5244e1ba63e5f3ea12066734bfb0d864a8f1f11d (patch) | |
tree | e389268c9bb473c457df4e7ab1de60922e0c7adf /src/mainboard/roda/rk886ex | |
parent | 8cda9699d4a2fea8ed2c5e4a7e66e8e1e0f831df (diff) | |
download | coreboot-5244e1ba63e5f3ea12066734bfb0d864a8f1f11d.tar.xz |
Convert more boards to use mptable_write_buses.
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6106 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/roda/rk886ex')
-rw-r--r-- | src/mainboard/roda/rk886ex/mptable.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/mainboard/roda/rk886ex/mptable.c b/src/mainboard/roda/rk886ex/mptable.c index 825aed2009..83049b9c0d 100644 --- a/src/mainboard/roda/rk886ex/mptable.c +++ b/src/mainboard/roda/rk886ex/mptable.c @@ -30,8 +30,7 @@ static void *smp_write_config_table(void *v) { struct mp_config_table *mc; - int i; - int max_pci_bus, isa_bus; + int isa_bus; mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN); @@ -39,16 +38,7 @@ static void *smp_write_config_table(void *v) smp_write_processors(mc); - max_pci_bus = 5; // XXX read me from bridges. - - /* ISA bus follows */ - isa_bus = max_pci_bus + 1; - - /* Bus: Bus ID Type */ - for (i=0; i <= max_pci_bus; i++) - smp_write_bus(mc, i, "PCI "); - - smp_write_bus(mc, isa_bus, "ISA "); + mptable_write_buses(mc, NULL, &isa_bus); /* I/O APICs: APIC ID Version State Address */ smp_write_ioapic(mc, 2, 0x20, IO_APIC_ADDR); |