diff options
author | Karthikeyan Ramasubramanian <kramasub@chromium.org> | 2019-07-02 09:55:01 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-13 18:26:03 +0000 |
commit | d06828da989fd22cf5699887b6bcccbbc8f1e086 (patch) | |
tree | 929beab0e7719bd068165346cda5f5351f59bb16 /src/drivers | |
parent | fd5d788f5e8139b387314d453644d9e58b1a654f (diff) | |
download | coreboot-d06828da989fd22cf5699887b6bcccbbc8f1e086.tar.xz |
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>
Diffstat (limited to 'src/drivers')
-rw-r--r-- | src/drivers/intel/wifi/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/intel/wifi/Kconfig b/src/drivers/intel/wifi/Kconfig index fc8700fa82..fb60c6fbe1 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 |