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

ACPI: x86: Move blacklist to x86 folder

blacklist is built solely for x86, move it to the respective folder.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Andy Shevchenko and committed by
Rafael J. Wysocki
3d26b94f 49db1083

+3 -2
-1
drivers/acpi/Makefile
··· 14 14 endif 15 15 16 16 obj-$(CONFIG_ACPI) += tables.o 17 - obj-$(CONFIG_X86) += blacklist.o 18 17 19 18 # 20 19 # ACPI Core Subsystem (Interpreter)
+1 -1
drivers/acpi/blacklist.c drivers/acpi/x86/blacklist.c
··· 17 17 #include <linux/acpi.h> 18 18 #include <linux/dmi.h> 19 19 20 - #include "internal.h" 20 + #include "../internal.h" 21 21 22 22 #ifdef CONFIG_DMI 23 23 static const struct dmi_system_id acpi_rev_dmi_table[] __initconst;
+2
drivers/acpi/x86/Makefile
··· 3 3 acpi-x86-y += cmos_rtc.o 4 4 acpi-x86-y += s2idle.o 5 5 acpi-x86-y += utils.o 6 + 7 + obj-$(CONFIG_X86) += blacklist.o