-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Ingo Molnar
committed
Feb 17, 2009
1 parent
be163a1
commit f62bae5
Showing
11 changed files
with
26 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# | ||
# Makefile for local APIC drivers and for the IO-APIC code | ||
# | ||
|
||
obj-y := apic.o ipi.o nmi.o | ||
obj-$(CONFIG_X86_IO_APIC) += io_apic.o | ||
obj-$(CONFIG_SMP) += ipi.o | ||
|
||
ifeq ($(CONFIG_X86_64),y) | ||
obj-y += apic_64.o apic_flat_64.o | ||
obj-$(CONFIG_X86_X2APIC) += x2apic_cluster.o | ||
obj-$(CONFIG_X86_X2APIC) += x2apic_phys.o | ||
obj-$(CONFIG_X86_UV) += x2apic_uv_x.o | ||
endif | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.