diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-02-17 12:09:24 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-17 12:17:36 -0500 |
commit | f62bae5009c1ba596cd475cafbc83e0570a36e26 (patch) | |
tree | 0c5a3000c566f42a7cc25d6c03d69d20b9bd0166 /arch/x86/kernel/Makefile | |
parent | be163a159b223e94b3180afdd47a8d468eb9a492 (diff) |
x86, apic: move APIC drivers to arch/x86/kernel/apic/*
arch/x86/kernel/ is getting a bit crowded, and the APIC
drivers are scattered into various different files.
Move them to arch/x86/kernel/apic/*, and also remove
the 'gen' prefix from those which had it.
Also move APIC related functionality: the IO-APIC driver,
the NMI and the IPI code.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/Makefile')
-rw-r--r-- | arch/x86/kernel/Makefile | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index 1cefd218f764..9139ff69471c 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile | |||
@@ -58,13 +58,12 @@ obj-$(CONFIG_PCI) += early-quirks.o | |||
58 | apm-y := apm_32.o | 58 | apm-y := apm_32.o |
59 | obj-$(CONFIG_APM) += apm.o | 59 | obj-$(CONFIG_APM) += apm.o |
60 | obj-$(CONFIG_SMP) += smp.o | 60 | obj-$(CONFIG_SMP) += smp.o |
61 | obj-$(CONFIG_SMP) += smpboot.o tsc_sync.o ipi.o | 61 | obj-$(CONFIG_SMP) += smpboot.o tsc_sync.o |
62 | obj-$(CONFIG_SMP) += setup_percpu.o | 62 | obj-$(CONFIG_SMP) += setup_percpu.o |
63 | obj-$(CONFIG_X86_64_SMP) += tsc_sync.o | 63 | obj-$(CONFIG_X86_64_SMP) += tsc_sync.o |
64 | obj-$(CONFIG_X86_TRAMPOLINE) += trampoline_$(BITS).o | 64 | obj-$(CONFIG_X86_TRAMPOLINE) += trampoline_$(BITS).o |
65 | obj-$(CONFIG_X86_MPPARSE) += mpparse.o | 65 | obj-$(CONFIG_X86_MPPARSE) += mpparse.o |
66 | obj-$(CONFIG_X86_LOCAL_APIC) += apic.o nmi.o ipi.o | 66 | obj-$(CONFIG_X86_LOCAL_APIC) += apic/ |
67 | obj-$(CONFIG_X86_IO_APIC) += io_apic.o | ||
68 | obj-$(CONFIG_X86_REBOOTFIXUPS) += reboot_fixups_32.o | 67 | obj-$(CONFIG_X86_REBOOTFIXUPS) += reboot_fixups_32.o |
69 | obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o | 68 | obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o |
70 | obj-$(CONFIG_FUNCTION_GRAPH_TRACER) += ftrace.o | 69 | obj-$(CONFIG_FUNCTION_GRAPH_TRACER) += ftrace.o |
@@ -116,17 +115,13 @@ obj-$(CONFIG_SWIOTLB) += pci-swiotlb_64.o # NB rename without _64 | |||
116 | ### | 115 | ### |
117 | # 64 bit specific files | 116 | # 64 bit specific files |
118 | ifeq ($(CONFIG_X86_64),y) | 117 | ifeq ($(CONFIG_X86_64),y) |
119 | obj-y += genapic_64.o genapic_flat_64.o | 118 | obj-$(CONFIG_X86_UV) += tlb_uv.o bios_uv.o uv_irq.o uv_sysfs.o |
120 | obj-$(CONFIG_X86_X2APIC) += genx2apic_cluster.o | 119 | obj-$(CONFIG_X86_PM_TIMER) += pmtimer_64.o |
121 | obj-$(CONFIG_X86_X2APIC) += genx2apic_phys.o | 120 | obj-$(CONFIG_AUDIT) += audit_64.o |
122 | obj-$(CONFIG_X86_UV) += genx2apic_uv_x.o tlb_uv.o | 121 | |
123 | obj-$(CONFIG_X86_UV) += bios_uv.o uv_irq.o uv_sysfs.o | 122 | obj-$(CONFIG_GART_IOMMU) += pci-gart_64.o aperture_64.o |
124 | obj-$(CONFIG_X86_PM_TIMER) += pmtimer_64.o | 123 | obj-$(CONFIG_CALGARY_IOMMU) += pci-calgary_64.o tce_64.o |
125 | obj-$(CONFIG_AUDIT) += audit_64.o | 124 | obj-$(CONFIG_AMD_IOMMU) += amd_iommu_init.o amd_iommu.o |
126 | 125 | ||
127 | obj-$(CONFIG_GART_IOMMU) += pci-gart_64.o aperture_64.o | 126 | obj-$(CONFIG_PCI_MMCONFIG) += mmconf-fam10h_64.o |
128 | obj-$(CONFIG_CALGARY_IOMMU) += pci-calgary_64.o tce_64.o | ||
129 | obj-$(CONFIG_AMD_IOMMU) += amd_iommu_init.o amd_iommu.o | ||
130 | |||
131 | obj-$(CONFIG_PCI_MMCONFIG) += mmconf-fam10h_64.o | ||
132 | endif | 127 | endif |