diff options
author | Randy Dunlap <[email protected]> | 2020-08-21 17:10:27 -0700 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2020-09-01 11:01:13 -0500 |
commit | 035fff1f7aab43e420e0098f0854470a5286fb83 (patch) | |
tree | 4541b1aca5ee49fe47aea5293c2adfb10016a54d | |
parent | 00da4805c3e1dd843de91794662809ec2516784e (diff) |
x86/PCI: Fix intel_mid_pci.c build error when ACPI is not enabled
Fix build error when CONFIG_ACPI is not set/enabled by adding the header
file <asm/acpi.h> which contains a stub for the function in the build
error.
../arch/x86/pci/intel_mid_pci.c: In function ‘intel_mid_pci_init’:
../arch/x86/pci/intel_mid_pci.c:303:2: error: implicit declaration of function ‘acpi_noirq_set’; did you mean ‘acpi_irq_get’? [-Werror=implicit-function-declaration]
acpi_noirq_set();
Fixes: a912a7584ec3 ("x86/platform/intel-mid: Move PCI initialization to arch_init()")
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Reviewed-by: Jesse Barnes <[email protected]>
Acked-by: Thomas Gleixner <[email protected]>
Cc: [email protected] # v4.16+
Cc: Jacob Pan <[email protected]>
Cc: Len Brown <[email protected]>
Cc: Jesse Barnes <[email protected]>
Cc: Arjan van de Ven <[email protected]>
-rw-r--r-- | arch/x86/pci/intel_mid_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/pci/intel_mid_pci.c b/arch/x86/pci/intel_mid_pci.c index 00c62115f39c..0aaf31917061 100644 --- a/arch/x86/pci/intel_mid_pci.c +++ b/arch/x86/pci/intel_mid_pci.c @@ -33,6 +33,7 @@ #include <asm/hw_irq.h> #include <asm/io_apic.h> #include <asm/intel-mid.h> +#include <asm/acpi.h> #define PCIE_CAP_OFFSET 0x100 |