Messages in this thread Patch in this message |  | | | Subject | [PATCH] CONFIG_AIRO needs CONFIG_CRYPTO | | From | dann frazier <> | | Date | Sat, 07 Jan 2006 17:47:14 -0700 |
| |
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>
--- linux-source-2.6.15/drivers/net/wireless/Kconfig~ 2006-01-02 20:21:10.000000000 -0700 +++ linux-source-2.6.15/drivers/net/wireless/Kconfig 2006-01-07 17:27:41.000000000 -0700 @@ -243,7 +243,7 @@ config AIRO tristate "Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards" - depends on NET_RADIO && ISA_DMA_API && (PCI || BROKEN) + depends on NET_RADIO && ISA_DMA_API && CRYPTO && (PCI || BROKEN) ---help--- This is the standard Linux driver to support Cisco/Aironet ISA and PCI 802.11 wireless cards.
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |