x86: Move uv to platform
authorThomas Gleixner <tglx@linutronix.de>
Sat, 23 Oct 2010 09:23:37 +0000 (11:23 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 27 Oct 2010 12:30:02 +0000 (14:30 +0200)
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Mike Travis <travis@sgi.com>
arch/x86/kernel/Makefile
arch/x86/platform/Makefile
arch/x86/platform/uv/Makefile [new file with mode: 0644]
arch/x86/platform/uv/bios_uv.c [moved from arch/x86/kernel/bios_uv.c with 100% similarity]
arch/x86/platform/uv/tlb_uv.c [moved from arch/x86/kernel/tlb_uv.c with 100% similarity]
arch/x86/platform/uv/uv_irq.c [moved from arch/x86/kernel/uv_irq.c with 100% similarity]
arch/x86/platform/uv/uv_sysfs.c [moved from arch/x86/kernel/uv_sysfs.c with 100% similarity]
arch/x86/platform/uv/uv_time.c [moved from arch/x86/kernel/uv_time.c with 100% similarity]

index 4e1f862dd688ad1ae84f0aba3e5898f820b0092e..08e2e4bf83988be906a04a60d7ccf23e6b25dfc6 100644 (file)
@@ -117,7 +117,6 @@ obj-$(CONFIG_SWIOTLB)                       += pci-swiotlb.o
 ###
 # 64 bit specific files
 ifeq ($(CONFIG_X86_64),y)
-       obj-$(CONFIG_X86_UV)            += tlb_uv.o bios_uv.o uv_irq.o uv_sysfs.o uv_time.o
        obj-$(CONFIG_AUDIT)             += audit_64.o
 
        obj-$(CONFIG_GART_IOMMU)        += pci-gart_64.o aperture_64.o
index 06761ed53747997840a0e058e4df858a28482d74..8519b01f1acb335fff6983dc8e1bdf0c87333990 100644 (file)
@@ -4,3 +4,4 @@ obj-y   += mrst/
 obj-y  += scx200/
 obj-y  += sfi/
 obj-y  += visws/
+obj-y  += uv/
diff --git a/arch/x86/platform/uv/Makefile b/arch/x86/platform/uv/Makefile
new file mode 100644 (file)
index 0000000..6c40995
--- /dev/null
@@ -0,0 +1 @@
+obj-$(CONFIG_X86_UV)           += tlb_uv.o bios_uv.o uv_irq.o uv_sysfs.o uv_time.o