1 # SPDX-License-Identifier: GPL-2.0 2 # 3 # Makefile for local APIC drivers and for the 4 # 5 6 # Leads to non-deterministic coverage that is 7 # In particular, smp_apic_timer_interrupt() is 8 KCOV_INSTRUMENT := n 9 10 obj-$(CONFIG_X86_LOCAL_APIC) += apic.o apic 11 obj-y += hw_nmi.o 12 13 obj-$(CONFIG_X86_IO_APIC) += io_apic.o 14 obj-$(CONFIG_PCI_MSI) += msi.o 15 obj-$(CONFIG_SMP) += ipi.o 16 17 ifeq ($(CONFIG_X86_64),y) 18 # APIC probe will depend on the listing order 19 obj-$(CONFIG_X86_NUMACHIP) += apic_numach 20 obj-$(CONFIG_X86_UV) += x2apic_uv_x 21 obj-$(CONFIG_X86_X2APIC) += x2apic_phys 22 obj-$(CONFIG_X86_X2APIC) += x2apic_clus 23 obj-y += apic_flat_6 24 endif 25 26 # APIC probe will depend on the listing order 27 obj-$(CONFIG_X86_BIGSMP) += bigsmp_32.o 28 29 # For 32bit, probe_32 need to be listed last 30 obj-$(CONFIG_X86_LOCAL_APIC) += probe_$(BIT
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.