kernel: add kcov code coverage
[linux-2.6-block.git] / arch / x86 / kernel / apic / Makefile
CommitLineData
f62bae50
IM
1#
2# Makefile for local APIC drivers and for the IO-APIC code
3#
4
5c9a8750
DV
5# Leads to non-deterministic coverage that is not a function of syscall inputs.
6# In particualr, smp_apic_timer_interrupt() is called in random places.
7KCOV_INSTRUMENT := n
8
74afab7a 9obj-$(CONFIG_X86_LOCAL_APIC) += apic.o apic_noop.o ipi.o vector.o
5f2b0ba4 10obj-y += hw_nmi.o
84e478c6 11
f62bae50 12obj-$(CONFIG_X86_IO_APIC) += io_apic.o
44380982 13obj-$(CONFIG_PCI_MSI) += msi.o
c3468952 14obj-$(CONFIG_HT_IRQ) += htirq.o
f62bae50
IM
15obj-$(CONFIG_SMP) += ipi.o
16
17ifeq ($(CONFIG_X86_64),y)
107e0e0c 18# APIC probe will depend on the listing order here
44b111b5 19obj-$(CONFIG_X86_NUMACHIP) += apic_numachip.o
f62bae50 20obj-$(CONFIG_X86_UV) += x2apic_uv_x.o
107e0e0c
SS
21obj-$(CONFIG_X86_X2APIC) += x2apic_phys.o
22obj-$(CONFIG_X86_X2APIC) += x2apic_cluster.o
23obj-y += apic_flat_64.o
f62bae50
IM
24endif
25
107e0e0c 26# APIC probe will depend on the listing order here
107e0e0c 27obj-$(CONFIG_X86_BIGSMP) += bigsmp_32.o
107e0e0c
SS
28
29# For 32bit, probe_32 need to be listed last
30obj-$(CONFIG_X86_LOCAL_APIC) += probe_$(BITS).o