diff options
author | Sinan Kaya <okaya@kernel.org> | 2019-01-05 05:05:56 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-01-15 17:16:18 -0500 |
commit | 1622745551db05071ed7263abf768007f7cbd3ae (patch) | |
tree | b452e6825f6c4f443ee3bc9b3e2f7f4bd243d58c | |
parent | 1c7fc5cbc33980acd13d668f1c8f0313d6ae9fd8 (diff) |
ACPI / LPSS: Make PCI dependency explicit
After commit 5d32a66541c4 (PCI/ACPI: Allow ACPI to be built without
CONFIG_PCI set), it is possible to build ACPI without any PCI support.
This code depends on PCI. Compile only when PCI is present.
Fixes: 5d32a66541c46 ("PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set")
Signed-off-by: Sinan Kaya <okaya@kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/Makefile | 3 | ||||
-rw-r--r-- | drivers/acpi/internal.h | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile index 7c6afc111d76..bb857421c2e8 100644 --- a/drivers/acpi/Makefile +++ b/drivers/acpi/Makefile | |||
@@ -41,7 +41,8 @@ acpi-y += ec.o | |||
41 | acpi-$(CONFIG_ACPI_DOCK) += dock.o | 41 | acpi-$(CONFIG_ACPI_DOCK) += dock.o |
42 | acpi-$(CONFIG_PCI) += pci_root.o pci_link.o pci_irq.o | 42 | acpi-$(CONFIG_PCI) += pci_root.o pci_link.o pci_irq.o |
43 | obj-$(CONFIG_ACPI_MCFG) += pci_mcfg.o | 43 | obj-$(CONFIG_ACPI_MCFG) += pci_mcfg.o |
44 | acpi-y += acpi_lpss.o acpi_apd.o | 44 | acpi-$(CONFIG_PCI) += acpi_lpss.o |
45 | acpi-y += acpi_apd.o | ||
45 | acpi-y += acpi_platform.o | 46 | acpi-y += acpi_platform.o |
46 | acpi-y += acpi_pnp.o | 47 | acpi-y += acpi_pnp.o |
47 | acpi-$(CONFIG_ARM_AMBA) += acpi_amba.o | 48 | acpi-$(CONFIG_ARM_AMBA) += acpi_amba.o |
diff --git a/drivers/acpi/internal.h b/drivers/acpi/internal.h index 7e6952edb5b0..6a9e1fb8913a 100644 --- a/drivers/acpi/internal.h +++ b/drivers/acpi/internal.h | |||
@@ -81,7 +81,11 @@ void acpi_debugfs_init(void); | |||
81 | #else | 81 | #else |
82 | static inline void acpi_debugfs_init(void) { return; } | 82 | static inline void acpi_debugfs_init(void) { return; } |
83 | #endif | 83 | #endif |
84 | #ifdef CONFIG_PCI | ||
84 | void acpi_lpss_init(void); | 85 | void acpi_lpss_init(void); |
86 | #else | ||
87 | static inline void acpi_lpss_init(void) {} | ||
88 | #endif | ||
85 | 89 | ||
86 | void acpi_apd_init(void); | 90 | void acpi_apd_init(void); |
87 | 91 | ||