diff options
author | Stefan Reinauer <stepan@openbios.org> | 2004-10-21 18:51:13 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2004-10-21 18:51:13 +0000 |
commit | 800a55bb5c2c8e03c3039cf4f1e6163a2fce8f54 (patch) | |
tree | fcbb28c5e0e0ed51c128d258e413a72297db3f01 /src/mainboard/amd/solo/mptable.c | |
parent | a49f4161f5631760309ba47b925183736a754717 (diff) | |
download | coreboot-800a55bb5c2c8e03c3039cf4f1e6163a2fce8f54.tar.xz |
get solo building after last infrastructure changes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1700 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd/solo/mptable.c')
-rw-r--r-- | src/mainboard/amd/solo/mptable.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mainboard/amd/solo/mptable.c b/src/mainboard/amd/solo/mptable.c index e0d7769b26..a21a49489b 100644 --- a/src/mainboard/amd/solo/mptable.c +++ b/src/mainboard/amd/solo/mptable.c @@ -4,7 +4,7 @@ #include <string.h> #include <stdint.h> -void *smp_write_config_table(void *v, unsigned long *processor_map) +void *smp_write_config_table(void *v) { static const char sig[4] = "PCMP"; static const char oem[8] = "AMD "; @@ -32,7 +32,7 @@ void *smp_write_config_table(void *v, unsigned long *processor_map) mc->mpe_checksum = 0; mc->reserved = 0; - smp_write_processors(mc, processor_map); + smp_write_processors(mc); { device_t dev; @@ -233,10 +233,9 @@ void *smp_write_config_table(void *v, unsigned long *processor_map) return smp_next_mpe_entry(mc); } -unsigned long write_smp_table(unsigned long addr, - unsigned long *processor_map) +unsigned long write_smp_table(unsigned long addr) { void *v; v = smp_write_floating_table(addr); - return (unsigned long) smp_write_config_table(v, processor_map); + return (unsigned long) smp_write_config_table(v); } |