[PATCH] CONFIG_AIRO needs CONFIG_CRYPTO

airo.c currently has MICSUPPORT enabled, which requires CONFIG_CRYPTO. A
user reported a build failure which is due to the lack of a Kconfig
dependency. See http://bugs.debian.org/344205.

This patch makes Kconfig enforce this dependency.

Signed-off-by: dann frazier <dannf@debian.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>

authored by dann frazier and committed by Jeff Garzik 9ad8b9d1 ac7c6669

+1 -1
+1 -1
drivers/net/wireless/Kconfig
··· 243 244 config AIRO 245 tristate "Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards" 246 - depends on NET_RADIO && ISA_DMA_API && (PCI || BROKEN) 247 ---help--- 248 This is the standard Linux driver to support Cisco/Aironet ISA and 249 PCI 802.11 wireless cards.
··· 243 244 config AIRO 245 tristate "Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards" 246 + depends on NET_RADIO && ISA_DMA_API && CRYPTO && (PCI || BROKEN) 247 ---help--- 248 This is the standard Linux driver to support Cisco/Aironet ISA and 249 PCI 802.11 wireless cards.