From e6a2f0a559a570b65aff0ba6ef663be86a577512 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Mon, 26 May 2014 14:06:05 -0500 Subject: [PATCH] staging: r8192ee: Fix build errors when PCI is not available A build of this driver fails when PCI is not selected. It would also fail if MAC80211 is not selected. Kconfig is fixed to handle these conditions, and to select additional necessary components. Reported-by: Randy Dunlap Reported-by: Ben Hutchings Signed-off-by: Larry Finger Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192ee/Kconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/staging/rtl8192ee/Kconfig b/drivers/staging/rtl8192ee/Kconfig index 92c5f442df3d0..beb07ac24e80d 100644 --- a/drivers/staging/rtl8192ee/Kconfig +++ b/drivers/staging/rtl8192ee/Kconfig @@ -1,6 +1,13 @@ config R8192EE tristate "Realtek RTL8192EE Wireless Network Adapter" + depends on PCI && WLAN && MAC80211 + depends on m + select WIRELESS_EXT + select WEXT_PRIV + select EEPROM_93CX6 + select CRYPTO select FW_LOADER + default N ---help--- This is the driver for Realtek RTL8192EE 802.11 PCIe wireless network adapters. -- 2.39.5