Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236333
b: refs/heads/master
c: 282fa9f
h: refs/heads/master
i:
  236331: da880cf
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Mar 9, 2011
1 parent d838dad commit 47fbd71
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e676ae5886c02a5cc48cace5b8e72d44d6e54ee1
refs/heads/master: 282fa9f3fb7eaf0b87903ff6267fcd2ae51e314a
2 changes: 1 addition & 1 deletion trunk/drivers/staging/rtl8192e/r8192E.h
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ int rtl8192_up(struct net_device *dev);
void rtl8192_commit(struct r8192_priv *priv);
void write_phy(struct net_device *dev, u8 adr, u8 data);
void CamResetAllEntry(struct r8192_priv *priv);
void EnableHWSecurityConfig8192(struct net_device *dev);
void EnableHWSecurityConfig8192(struct r8192_priv *priv);
void setKey(struct net_device *dev, u8 EntryNo, u8 KeyIndex, u16 KeyType, const u8 *MacAddr, u8 DefaultKey, u32 *KeyContent );
void firmware_init_param(struct net_device *dev);
RT_STATUS cmpk_message_handle_tx(struct net_device *dev, u8* codevirtualaddress, u32 packettype, u32 buffer_len);
Expand Down
7 changes: 3 additions & 4 deletions trunk/drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -4913,10 +4913,9 @@ static irqreturn_t rtl8192_interrupt(int irq, void *netdev)
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;
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/rtl8192e/r8192E_wx.c
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ static int r8192_wx_set_enc(struct net_device *dev,
//printk("-------====>length:%d, key_idx:%d, flag:%x\n", wrqu->encoding.length, key_idx, wrqu->encoding.flags);
if(wrqu->encoding.length==0x5){
ieee->pairwise_key_type = KEY_TYPE_WEP40;
EnableHWSecurityConfig8192(dev);
EnableHWSecurityConfig8192(priv);
setKey( dev,
key_idx, //EntryNo
key_idx, //KeyIndex
Expand All @@ -697,7 +697,7 @@ static int r8192_wx_set_enc(struct net_device *dev,

else if(wrqu->encoding.length==0xd){
ieee->pairwise_key_type = KEY_TYPE_WEP104;
EnableHWSecurityConfig8192(dev);
EnableHWSecurityConfig8192(priv);
setKey( dev,
key_idx, //EntryNo
key_idx, //KeyIndex
Expand Down Expand Up @@ -901,7 +901,7 @@ static int r8192_wx_set_enc_ext(struct net_device *dev,
if ((ext->key_len == 13) && (alg == KEY_TYPE_WEP40) )
alg = KEY_TYPE_WEP104;
ieee->pairwise_key_type = alg;
EnableHWSecurityConfig8192(dev);
EnableHWSecurityConfig8192(priv);
}
memcpy((u8*)key, ext->key, 16); //we only get 16 bytes key.why? WB 2008.7.1

Expand Down

0 comments on commit 47fbd71

Please sign in to comment.