diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-04-15 21:25:21 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-04-15 21:25:21 +0000 |
commit | 472f3ffcf8eeda12d1a07c6bb8135ec16be30cf8 (patch) | |
tree | b68c09488219c1164626ab950541d15d93b3b775 /src/arch/i386/include | |
parent | 4e006407ec347a79b60949b03a2badccf923bb06 (diff) | |
download | coreboot-472f3ffcf8eeda12d1a07c6bb8135ec16be30cf8.tar.xz |
This patch cleans up mpspec.h and allows it to be included when
HAVE_MP_TABLE=0
It also removes the artifacts from the Asus m2v-mx_se that were
necessary before the change.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4120 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/include')
-rw-r--r-- | src/arch/i386/include/arch/smp/mpspec.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/arch/i386/include/arch/smp/mpspec.h b/src/arch/i386/include/arch/smp/mpspec.h index aa273e0c9b..0e8e3553c3 100644 --- a/src/arch/i386/include/arch/smp/mpspec.h +++ b/src/arch/i386/include/arch/smp/mpspec.h @@ -1,8 +1,6 @@ #ifndef __ASM_MPSPEC_H #define __ASM_MPSPEC_H -#if HAVE_MP_TABLE==1 - /* * Structure definitions for SMP machines following the * Intel Multiprocessing Specification 1.1 and 1.4. @@ -272,16 +270,5 @@ void *smp_write_floating_table_physaddr(unsigned long addr, unsigned long mpf_physptr); unsigned long write_smp_table(unsigned long addr); -#else /* HAVE_MP_TABLE */ -#if 0 -static inline -unsigned long write_smp_table(unsigned long addr) -{ - return addr; -} -#endif -#define write_smp_table(addr) (addr) -#endif /* HAVE_MP_TABLE */ - #endif |