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

ACPI: x86: Introduce a Makefile

There will be more modules coming here, so, introduce a separate
Makefile and include it in parent one via obj-$(CONFIG_X86).

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
d85eb415 1b2a34f2

+5 -3
+1 -3
drivers/acpi/Makefile
··· 56 56 acpi-y += sysfs.o 57 57 acpi-y += property.o 58 58 acpi-$(CONFIG_X86) += acpi_cmos_rtc.o 59 - acpi-$(CONFIG_X86) += x86/apple.o 60 - acpi-$(CONFIG_X86) += x86/utils.o 61 - acpi-$(CONFIG_X86) += x86/s2idle.o 62 59 acpi-$(CONFIG_DEBUG_FS) += debugfs.o 63 60 acpi-y += acpi_lpat.o 64 61 acpi-$(CONFIG_ACPI_FPDT) += acpi_fpdt.o ··· 129 132 obj-$(CONFIG_ACPI_VIOT) += viot.o 130 133 131 134 obj-$(CONFIG_RISCV) += riscv/ 135 + obj-$(CONFIG_X86) += x86/
+4
drivers/acpi/x86/Makefile
··· 1 + obj-$(CONFIG_ACPI) += acpi-x86.o 2 + acpi-x86-y += apple.o 3 + acpi-x86-y += s2idle.o 4 + acpi-x86-y += utils.o