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

x86/platform/iosf_mbi: Move to dedicated folder

Move the driver to arch/x86/platform/intel since it is not a core
kernel code and it is related to many Intel SoCs from different
groups: Atom, MID, etc.

There is no functional change.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: David E . Box <david.e.box@linux.intel.com>
Link: http://lkml.kernel.org/r/1436366709-17683-2-git-send-email-andriy.shevchenko@linux.intel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by

Andy Shevchenko and committed by
Thomas Gleixner
23ae2a16 91780c41

+2 -1
-1
arch/x86/kernel/Makefile
··· 107 107 108 108 obj-$(CONFIG_PERF_EVENTS) += perf_regs.o 109 109 obj-$(CONFIG_TRACING) += tracepoint.o 110 - obj-$(CONFIG_IOSF_MBI) += iosf_mbi.o 111 110 112 111 ### 113 112 # 64 bit specific files
arch/x86/kernel/iosf_mbi.c arch/x86/platform/intel/iosf_mbi.c
+1
arch/x86/platform/Makefile
··· 5 5 obj-y += geode/ 6 6 obj-y += goldfish/ 7 7 obj-y += iris/ 8 + obj-y += intel/ 8 9 obj-y += intel-mid/ 9 10 obj-y += intel-quark/ 10 11 obj-y += olpc/
+1
arch/x86/platform/intel/Makefile
··· 1 + obj-$(CONFIG_IOSF_MBI) += iosf_mbi.o