... as the implementations are in genapic/probe.c
This covers the only functions that both setup.c and boot.c were including
mach_apic.h for, although setup.c was depending on io_apic.h transitively too.
The happens to address two MISRA Rule 8.4 violations, as probe.c couldn't
previously see the declarations.
No functional change.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
#include <asm/mpspec.h>
#include <asm/processor.h>
#include <asm/hpet.h> /* for hpet_address */
-#include <mach_apic.h>
+#include <asm/genapic.h>
#define PREFIX "ACPI: "
void cf_check send_IPI_mask_phys(const cpumask_t *mask, int vector);
const cpumask_t *cf_check vector_allocation_cpumask_phys(int cpu);
+void generic_apic_probe(void);
+void generic_bigsmp_probe(void);
+
#endif
return 0;
}
-extern void generic_apic_probe(void);
-extern void generic_bigsmp_probe(void);
-
/*
* The following functions based around phys_cpu_present_map are disabled in
* some i386 Linux subarchitectures, and in x86_64 'cluster' genapic mode. I'm
#include <xsm/xsm.h>
#include <asm/tboot.h>
#include <asm/bzimage.h> /* for bzimage_headroom */
-#include <asm/mach-generic/mach_apic.h> /* for generic_apic_probe */
+#include <asm/genapic.h>
+#include <asm/io_apic.h>
#include <asm/setup.h>
#include <xen/cpu.h>
#include <xen/cpuidle.h>