summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarthikeyan Ramasubramanian <kramasub@chromium.org>2019-07-02 09:55:01 -0600
committerMartin Roth <martinroth@google.com>2019-07-13 18:26:03 +0000
commitd06828da989fd22cf5699887b6bcccbbc8f1e086 (patch)
tree929beab0e7719bd068165346cda5f5351f59bb16
parentfd5d788f5e8139b387314d453644d9e58b1a654f (diff)
downloadcoreboot-d06828da989fd22cf5699887b6bcccbbc8f1e086.tar.gz
coreboot-d06828da989fd22cf5699887b6bcccbbc8f1e086.tar.bz2
coreboot-d06828da989fd22cf5699887b6bcccbbc8f1e086.zip
drivers/intel/wifi: Make Intel wifi driver arch agnostic
Mark Intel WiFi driver to depend on PCI and remove the dependency on x86 architecture. BUG=None BRANCH=None TEST=Compile and Boot to ChromeOS. Change-Id: I762007d53b43bbc78924ee8efe236d6a7ff4dc57 Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33959 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/drivers/intel/wifi/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/intel/wifi/Kconfig b/src/drivers/intel/wifi/Kconfig
index fc8700fa82f3..fb60c6fbe132 100644
--- a/src/drivers/intel/wifi/Kconfig
+++ b/src/drivers/intel/wifi/Kconfig
@@ -1,6 +1,6 @@
config DRIVERS_INTEL_WIFI
bool "Support Intel PCI-e WiFi adapters"
- depends on ARCH_X86
+ depends on PCI
default y if PCIEXP_PLUGIN_SUPPORT
select DRIVERS_GENERIC_WIFI if HAVE_ACPI_TABLES
help