enable_apic_mode needs tobe hooked up. (It came in with the es7000 merge) include/asm-i386/genapic.h | 2 ++ include/asm-i386/mach-generic/mach_apic.h | 1 + 2 files changed, 3 insertions(+) diff -puN include/asm-i386/mach-generic/mach_apic.h~mach-generic-build-fix include/asm-i386/mach-generic/mach_apic.h --- 25/include/asm-i386/mach-generic/mach_apic.h~mach-generic-build-fix 2003-06-18 02:06:07.000000000 -0700 +++ 25-akpm/include/asm-i386/mach-generic/mach_apic.h 2003-06-18 02:06:07.000000000 -0700 @@ -25,5 +25,6 @@ #define check_phys_apicid_present (genapic->check_phys_apicid_present) #define check_apicid_used (genapic->check_apicid_used) #define cpu_mask_to_apicid (genapic->cpu_mask_to_apicid) +#define enable_apic_mode (genapic->enable_apic_mode) #endif /* __ASM_MACH_APIC_H */ diff -puN include/asm-i386/genapic.h~mach-generic-build-fix include/asm-i386/genapic.h --- 25/include/asm-i386/genapic.h~mach-generic-build-fix 2003-06-18 02:06:07.000000000 -0700 +++ 25-akpm/include/asm-i386/genapic.h 2003-06-18 02:06:07.000000000 -0700 @@ -43,6 +43,7 @@ struct genapic { struct mpc_config_translation *t); void (*setup_portio_remap)(void); int (*check_phys_apicid_present)(int boot_cpu_physical_apicid); + void (*enable_apic_mode)(void); /* mpparse */ void (*mpc_oem_bus_info)(struct mpc_config_bus *, char *, @@ -101,6 +102,7 @@ struct genapic { APICFUNC(send_IPI_mask), \ APICFUNC(send_IPI_allbutself), \ APICFUNC(send_IPI_all), \ + APICFUNC(enable_apic_mode), \ } extern struct genapic *genapic; _