search for: mpc_default_typ

Displaying 2 results from an estimated 2 matches for "mpc_default_typ".

Did you mean: mpc_default_type
2006 Feb 16
0
[PATCH] fix mp_current_pci_id duplicate declaration
...8f771cc xen/include/asm-x86/mpspec.h --- a/xen/include/asm-x86/mpspec.h Thu Feb 16 17:37:21 2006 +0100 +++ b/xen/include/asm-x86/mpspec.h Thu Feb 16 14:00:24 2006 -0500 @@ -23,7 +23,6 @@ extern struct mpc_config_intsrc mp_irqs extern struct mpc_config_intsrc mp_irqs [MAX_IRQ_SOURCES]; extern int mpc_default_type; extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES]; -extern int mp_current_pci_id; extern unsigned long mp_lapic_addr; extern int pic_mode; extern int using_apic_timer; _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.co...
2011 Mar 09
0
[PATCH 04/11] x86: cleanup mpparse.c
...config; +extern bool_t smp_found_config; extern void find_smp_config (void); extern void get_smp_config (void); -extern int apic_version [MAX_APICS]; +extern unsigned char apic_version [MAX_APICS]; extern int mp_irq_entries; extern struct mpc_config_intsrc mp_irqs [MAX_IRQ_SOURCES]; extern int mpc_default_type; extern unsigned long mp_lapic_addr; -extern int pic_mode; +extern bool_t pic_mode; #ifdef CONFIG_ACPI -extern int mp_register_lapic (u32 id, u8 enabled); +extern int mp_register_lapic(u32 id, bool_t enabled, bool_t hotplug); extern void mp_unregister_lapic(uint32_t apic_id, uint32_t cpu); e...