[coreboot-gerrit] New patch to review for coreboot: drivers/intel/wifi: Add depends on ARCH_X86

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Thu Oct 6 18:28:15 CEST 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16906

-gerrit

commit bec3c86d15c129f2109afa1f1454e425ed60e434
Author: Martin Roth <martinroth at google.com>
Date:   Thu Oct 6 10:27:59 2016 -0600

    drivers/intel/wifi: Add depends on ARCH_X86
    
    When compiling a non-x86 platform with DRIVERS_INTEL_WIFI enabled,
    we get the build error:
    
    src/drivers/intel/wifi/wifi.c:17:30: fatal error:
    arch/acpi_device.h: No such file or directory
    
    acpi_device.h only exists in the x86 architecture directory.
    
    Change-Id: Id0e29558336bf44e638cfcb97c22f31683ea4ec7
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 src/drivers/intel/wifi/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/drivers/intel/wifi/Kconfig b/src/drivers/intel/wifi/Kconfig
index 40a8528..330de6c 100644
--- a/src/drivers/intel/wifi/Kconfig
+++ b/src/drivers/intel/wifi/Kconfig
@@ -1,5 +1,6 @@
 config DRIVERS_INTEL_WIFI
 	bool "Support Intel PCI-e WiFi adapters"
+	depends on ARCH_X86
 	default y if PCIEXP_PLUGIN_SUPPORT
 	help
 	   When enabled, add identifiers in ACPI and SMBIOS tables to



More information about the coreboot-gerrit mailing list