Prev: staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure
Next: Memory-Hotplug: Fix the bug on interface /dev/mem for 64-bit kernel(v1)
From: Peter Hüwe on 8 Jan 2010 05:50 From: Peter Huewe <peterhuewe(a)gmx.de> Date: Fri, 8 Jan 2010 09:10:13 +0100 Without WEXT_PRIV set the driver fails to build due to unknown fields in the iw_handler_def struct. Those fields are enclosed in WEXT_PRIV conditionals in the prototype of iw_handler_def in include/net/iw_handler.h Signed-off-by: Peter Huewe <peterhuewe(a)gmx.de> Acked-by: Simon Horman <horms(a)verge.net.au> --- drivers/staging/rtl8192u/Kconfig | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/staging/rtl8192u/Kconfig b/drivers/staging/rtl8192u/Kconfig index 9913ab8..0439c90 100644 --- a/drivers/staging/rtl8192u/Kconfig +++ b/drivers/staging/rtl8192u/Kconfig @@ -1,6 +1,7 @@ config RTL8192U tristate "RealTek RTL8192U Wireless LAN NIC driver" depends on PCI && WLAN && USB - depends on WIRELESS_EXT + select WIRELESS_EXT + select WEXT_PRIV default N ---help--- -- 1.6.4.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |