diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-05-30 14:34:05 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-05-30 16:04:36 +0200 |
commit | d6ddaaac8f5c37ad84db3e6e019981f392389cf0 (patch) | |
tree | 1b5cb6bd0e4e8ba9b02b81174fb5f3464aabff59 /drivers/acpi/Makefile | |
parent | cccd420859a419756bc4ed25d52989a47d702561 (diff) | |
download | op-kernel-dev-d6ddaaac8f5c37ad84db3e6e019981f392389cf0.zip op-kernel-dev-d6ddaaac8f5c37ad84db3e6e019981f392389cf0.tar.gz |
ACPI / scan: always register ACPI LPSS scan handler
Prevent platform devices from being created for ACPI LPSS devices
if CONFIG_X86_INTEL_LPSS is unset by compiling out the LPSS scan
handler's callbacks only in that case and still compiling its device
ID list in and registering the scan handler in either case.
This change is based on a prototype from Zhang Rui.
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/acpi/Makefile')
-rw-r--r-- | drivers/acpi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile index f1c9266..ea55e01 100644 --- a/drivers/acpi/Makefile +++ b/drivers/acpi/Makefile @@ -39,7 +39,7 @@ acpi-y += processor_core.o acpi-y += ec.o acpi-$(CONFIG_ACPI_DOCK) += dock.o acpi-y += pci_root.o pci_link.o pci_irq.o -acpi-$(CONFIG_X86_INTEL_LPSS) += acpi_lpss.o +acpi-y += acpi_lpss.o acpi-y += acpi_platform.o acpi-y += acpi_pnp.o acpi-y += power.o |