]> git.karo-electronics.de Git - linux-beck.git/commitdiff
x86/platform/iosf_mbi: Move to dedicated folder
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 8 Jul 2015 14:45:05 +0000 (17:45 +0300)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 16 Jul 2015 15:48:47 +0000 (17:48 +0200)
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>
arch/x86/kernel/Makefile
arch/x86/platform/Makefile
arch/x86/platform/intel/Makefile [new file with mode: 0644]
arch/x86/platform/intel/iosf_mbi.c [moved from arch/x86/kernel/iosf_mbi.c with 100% similarity]

index 81db53ba9da85a53db6ef52abfcd2ed2c8e20072..7041f8b5161b6b14b4b0c7ee0aac98b2c2855474 100644 (file)
@@ -107,7 +107,6 @@ obj-$(CONFIG_EFI)                   += sysfb_efi.o
 
 obj-$(CONFIG_PERF_EVENTS)              += perf_regs.o
 obj-$(CONFIG_TRACING)                  += tracepoint.o
-obj-$(CONFIG_IOSF_MBI)                 += iosf_mbi.o
 
 ###
 # 64 bit specific files
index f1a6c8e86ddd927e0b5f8d947b8f4e725a5b4933..184842ef332e0123762c3463bd795ef4a9aaa282 100644 (file)
@@ -5,6 +5,7 @@ obj-y   += efi/
 obj-y  += geode/
 obj-y  += goldfish/
 obj-y  += iris/
+obj-y  += intel/
 obj-y  += intel-mid/
 obj-y  += intel-quark/
 obj-y  += olpc/
diff --git a/arch/x86/platform/intel/Makefile b/arch/x86/platform/intel/Makefile
new file mode 100644 (file)
index 0000000..b878032
--- /dev/null
@@ -0,0 +1 @@
+obj-$(CONFIG_IOSF_MBI)                 += iosf_mbi.o