Skip to content
Snippets Groups Projects
Commit ca0084fa authored by Chuck Ebbert's avatar Chuck Ebbert Committed by John W. Linville
Browse files

[PATCH] ieee80211: TKIP requires CRC32


ieee80211_crypt_tkip will not work without CRC32.

  LD      .tmp_vmlinux1
net/built-in.o: In function `ieee80211_tkip_encrypt':
net/ieee80211/ieee80211_crypt_tkip.c:349: undefined reference to `crc32_le'

Reported by Toralf Foerster <toralf.foerster@gmx.de>

Signed-off-by: default avatarChuck Ebbert <76306.1226@compuserve.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent fe397d46
No related branches found
No related tags found
No related merge requests found
...@@ -58,6 +58,7 @@ config IEEE80211_CRYPT_TKIP ...@@ -58,6 +58,7 @@ config IEEE80211_CRYPT_TKIP
depends on IEEE80211 && NET_RADIO depends on IEEE80211 && NET_RADIO
select CRYPTO select CRYPTO
select CRYPTO_MICHAEL_MIC select CRYPTO_MICHAEL_MIC
select CRC32
---help--- ---help---
Include software based cipher suites in support of IEEE 802.11i Include software based cipher suites in support of IEEE 802.11i
(aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment