diff options
author | Mike Travis <travis@sgi.com> | 2013-09-23 16:25:00 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-09-24 09:02:02 +0200 |
commit | 1e019421bca68cfae1a61a09d9d49cf6a9e2143b (patch) | |
tree | 94779604797b1147ff48565e6e681206cea29f74 /arch/x86/platform/uv/Makefile | |
parent | 4a10c2ac2f368583138b774ca41fac4207911983 (diff) | |
download | linux-1e019421bca68cfae1a61a09d9d49cf6a9e2143b.tar.gz linux-1e019421bca68cfae1a61a09d9d49cf6a9e2143b.tar.bz2 linux-1e019421bca68cfae1a61a09d9d49cf6a9e2143b.zip |
x86/UV: Move NMI support
This patch moves the UV NMI support from the x2apic file to a
new separate uv_nmi.c file in preparation for the next sequence
of patches. It prevents upcoming bloat of the x2apic file, and
has the added benefit of putting the upcoming /sys/module
parameters under the name 'uv_nmi' instead of 'x2apic_uv_x',
which was obscure.
Signed-off-by: Mike Travis <travis@sgi.com>
Reviewed-by: Dimitri Sivanich <sivanich@sgi.com>
Reviewed-by: Hedi Berriche <hedi@sgi.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Jason Wessel <jason.wessel@windriver.com>
Link: http://lkml.kernel.org/r/20130923212500.183295611@asylum.americas.sgi.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/platform/uv/Makefile')
-rw-r--r-- | arch/x86/platform/uv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/platform/uv/Makefile b/arch/x86/platform/uv/Makefile index 6c40995fefb8..52079bebd014 100644 --- a/arch/x86/platform/uv/Makefile +++ b/arch/x86/platform/uv/Makefile @@ -1 +1 @@ -obj-$(CONFIG_X86_UV) += tlb_uv.o bios_uv.o uv_irq.o uv_sysfs.o uv_time.o +obj-$(CONFIG_X86_UV) += tlb_uv.o bios_uv.o uv_irq.o uv_sysfs.o uv_time.o uv_nmi.o |