summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8192e/r8192E_core.c
diff options
context:
space:
mode:
authorMike McCormack <mikem@ring3k.org>2011-03-08 15:39:23 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-09 23:46:26 (GMT)
commit282fa9f3fb7eaf0b87903ff6267fcd2ae51e314a (patch)
treeec0a6ad27c771cf875aade367df113f9c26fd4b7 /drivers/staging/rtl8192e/r8192E_core.c
parente676ae5886c02a5cc48cace5b8e72d44d6e54ee1 (diff)
downloadlinux-fsl-qoriq-282fa9f3fb7eaf0b87903ff6267fcd2ae51e314a.tar.xz
staging: rtl8192e: Pass priv to EnableHWSecurityConfig8192
Signed-off-by: Mike McCormack <mikem@ring3k.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/rtl8192e/r8192E_core.c')
-rw-r--r--drivers/staging/rtl8192e/r8192E_core.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/staging/rtl8192e/r8192E_core.c b/drivers/staging/rtl8192e/r8192E_core.c
index 93e9e67..1028d43 100644
--- a/drivers/staging/rtl8192e/r8192E_core.c
+++ b/drivers/staging/rtl8192e/r8192E_core.c
@@ -1488,7 +1488,7 @@ static void rtl8192_link_change(struct net_device *dev)
//add this as in pure N mode, wep encryption will use software way, but there is no chance to set this as wep will not set group key in wext. WB.2008.07.08
if ((KEY_TYPE_WEP40 == ieee->pairwise_key_type) || (KEY_TYPE_WEP104 == ieee->pairwise_key_type))
- EnableHWSecurityConfig8192(dev);
+ EnableHWSecurityConfig8192(priv);
}
else
{
@@ -3561,7 +3561,7 @@ static void r8192e_set_hw_key(struct r8192_priv *priv, struct ieee_param *ipw)
if (ieee->pairwise_key_type) {
memcpy(key, ipw->u.crypt.key, 16);
- EnableHWSecurityConfig8192(dev);
+ EnableHWSecurityConfig8192(priv);
/*
* We fill both index entry and 4th entry for pairwise
* key as in IPW interface, adhoc will only get here,
@@ -4913,10 +4913,9 @@ out_unlock:
return ret;
}
-void EnableHWSecurityConfig8192(struct net_device *dev)
+void EnableHWSecurityConfig8192(struct r8192_priv *priv)
{
u8 SECR_value = 0x0;
- struct r8192_priv *priv = (struct r8192_priv *)ieee80211_priv(dev);
struct ieee80211_device* ieee = priv->ieee80211;
SECR_value = SCR_TxEncEnable | SCR_RxDecEnable;