From: Wei Yongjun Date: Sun, 26 Aug 2012 01:00:30 +0000 (+0800) Subject: Staging: rtl8192u: use is_broadcast_ether_addr() instead of memcmp() X-Git-Tag: next-20120905~19^2~72 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8cfbc9dcde38c167b10c9c1b74f410f9a577b857;p=karo-tx-linux.git Staging: rtl8192u: use is_broadcast_ether_addr() instead of memcmp() Using is_broadcast_ether_addr() instead of directly use memcmp() to determine if the ethernet address is broadcast address. spatch with a semantic match is used to found this problem. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c index a6adfc916291..6721ed9efc3b 100644 --- a/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c +++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c @@ -20,6 +20,8 @@ #include #include #include +#include + #include "dot11d.h" u8 rsn_authen_cipher_suite[16][4] = { @@ -2969,9 +2971,7 @@ static int ieee80211_wpa_set_encryption(struct ieee80211_device *ieee, param->u.crypt.key_len); return -EINVAL; } - if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff && - param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff && - param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) { + if (is_broadcast_ether_addr(param->sta_addr)) { if (param->u.crypt.idx >= WEP_KEYS) return -EINVAL; crypt = &ieee->crypt[param->u.crypt.idx];