]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] mach-generic build fix
authorAndrew Morton <akpm@digeo.com>
Fri, 20 Jun 2003 15:15:18 +0000 (08:15 -0700)
committerLinus Torvalds <torvalds@home.transmeta.com>
Fri, 20 Jun 2003 15:15:18 +0000 (08:15 -0700)
enable_apic_mode needs tobe hooked up.  (It came in with the es7000 merge)

include/asm-i386/genapic.h
include/asm-i386/mach-generic/mach_apic.h

index 0fb2bd405e96ccfd7921ab63b8385f35fa687ae8..9b85a2259b4a9a08301e6dccab95ed59fe894242 100644 (file)
@@ -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;
index 54fa2a48b2345100ec3f77121721c48f63aa2736..71b4849614bc9ab8a115f7ca917644f416f69955 100644 (file)
@@ -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 */