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