Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86 mmiotrace: move files into arch/x86/mm/.

Signed-off-by: Pekka Paalanen <pq@iki.fi>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by

Pekka Paalanen and committed by
Thomas Gleixner
ff3a3e9b 49023168

+5 -6
-2
arch/x86/kernel/Makefile
··· 79 79 obj-$(CONFIG_VM86) += vm86_32.o 80 80 obj-$(CONFIG_EARLY_PRINTK) += early_printk.o 81 81 82 - obj-$(CONFIG_MMIOTRACE) += mmiotrace/ 83 - 84 82 obj-$(CONFIG_HPET_TIMER) += hpet.o 85 83 86 84 obj-$(CONFIG_K8_NB) += k8.o
-4
arch/x86/kernel/mmiotrace/Makefile
··· 1 - obj-$(CONFIG_MMIOTRACE_HOOKS) += kmmio.o 2 - obj-$(CONFIG_MMIOTRACE) += mmiotrace.o 3 - mmiotrace-y := pf_in.o mmio-mod.o 4 - obj-$(CONFIG_MMIOTRACE_TEST) += testmmiotrace.o
arch/x86/kernel/mmiotrace/kmmio.c arch/x86/mm/kmmio.c
arch/x86/kernel/mmiotrace/mmio-mod.c arch/x86/mm/mmio-mod.c
arch/x86/kernel/mmiotrace/pf_in.c arch/x86/mm/pf_in.c
arch/x86/kernel/mmiotrace/pf_in.h arch/x86/mm/pf_in.h
arch/x86/kernel/mmiotrace/testmmiotrace.c arch/x86/mm/testmmiotrace.c
+5
arch/x86/mm/Makefile
··· 8 8 9 9 obj-$(CONFIG_HIGHMEM) += highmem_32.o 10 10 11 + obj-$(CONFIG_MMIOTRACE_HOOKS) += kmmio.o 12 + obj-$(CONFIG_MMIOTRACE) += mmiotrace.o 13 + mmiotrace-y := pf_in.o mmio-mod.o 14 + obj-$(CONFIG_MMIOTRACE_TEST) += testmmiotrace.o 15 + 11 16 ifeq ($(CONFIG_X86_32),y) 12 17 obj-$(CONFIG_NUMA) += discontig_32.o 13 18 else