mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 06:33:34 +00:00
Staging: rtl8192e: Rename variable bHwSec
Rename variable bHwSec to hw_sec to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org> Link: https://lore.kernel.org/r/20240612032230.9738-2-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
50d61396e3
commit
50acd717cb
@ -934,7 +934,7 @@ void rtl92e_fill_tx_desc(struct net_device *dev, struct tx_desc *pdesc,
|
||||
|
||||
pdesc->NoEnc = 1;
|
||||
pdesc->SecType = 0x0;
|
||||
if (cb_desc->bHwSec) {
|
||||
if (cb_desc->hw_sec) {
|
||||
static u8 tmp;
|
||||
|
||||
if (!tmp)
|
||||
|
@ -105,7 +105,7 @@ struct cb_desc {
|
||||
u8 bCmdOrInit:1;
|
||||
u8 tx_dis_rate_fallback:1;
|
||||
u8 tx_use_drv_assinged_rate:1;
|
||||
u8 bHwSec:1;
|
||||
u8 hw_sec:1;
|
||||
|
||||
u8 nStuckCount;
|
||||
|
||||
|
@ -182,7 +182,7 @@ static int rtllib_ccmp_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
*pos++ = key->tx_pn[0];
|
||||
|
||||
hdr = (struct ieee80211_hdr *)skb->data;
|
||||
if (!tcb_desc->bHwSec) {
|
||||
if (!tcb_desc->hw_sec) {
|
||||
struct aead_request *req;
|
||||
struct scatterlist sg[2];
|
||||
u8 *aad = key->tx_aad;
|
||||
@ -265,7 +265,7 @@ static int rtllib_ccmp_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
key->dot11rsna_stats_ccmp_replays++;
|
||||
return -4;
|
||||
}
|
||||
if (!tcb_desc->bHwSec) {
|
||||
if (!tcb_desc->hw_sec) {
|
||||
size_t data_len = skb->len - hdr_len - CCMP_HDR_LEN;
|
||||
struct aead_request *req;
|
||||
struct scatterlist sg[2];
|
||||
|
@ -268,7 +268,7 @@ static int rtllib_tkip_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
|
||||
hdr = (struct ieee80211_hdr *)skb->data;
|
||||
|
||||
if (!tcb_desc->bHwSec) {
|
||||
if (!tcb_desc->hw_sec) {
|
||||
if (!tkey->tx_phase1_done) {
|
||||
tkip_mixing_phase1(tkey->tx_ttak, tkey->key, hdr->addr2,
|
||||
tkey->tx_iv32);
|
||||
@ -285,7 +285,7 @@ static int rtllib_tkip_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
memmove(pos, pos + 8, hdr_len);
|
||||
pos += hdr_len;
|
||||
|
||||
if (tcb_desc->bHwSec) {
|
||||
if (tcb_desc->hw_sec) {
|
||||
*pos++ = Hi8(tkey->tx_iv16);
|
||||
*pos++ = (Hi8(tkey->tx_iv16) | 0x20) & 0x7F;
|
||||
*pos++ = Lo8(tkey->tx_iv16);
|
||||
@ -301,7 +301,7 @@ static int rtllib_tkip_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
*pos++ = (tkey->tx_iv32 >> 16) & 0xff;
|
||||
*pos++ = (tkey->tx_iv32 >> 24) & 0xff;
|
||||
|
||||
if (!tcb_desc->bHwSec) {
|
||||
if (!tcb_desc->hw_sec) {
|
||||
icv = skb_put(skb, 4);
|
||||
crc = ~crc32_le(~0, pos, len);
|
||||
icv[0] = crc;
|
||||
@ -319,7 +319,7 @@ static int rtllib_tkip_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
tkey->tx_iv32++;
|
||||
}
|
||||
|
||||
if (!tcb_desc->bHwSec)
|
||||
if (!tcb_desc->hw_sec)
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
@ -371,7 +371,7 @@ static int rtllib_tkip_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
iv32 = pos[4] | (pos[5] << 8) | (pos[6] << 16) | (pos[7] << 24);
|
||||
pos += 8;
|
||||
|
||||
if (!tcb_desc->bHwSec || (skb->cb[0] == 1)) {
|
||||
if (!tcb_desc->hw_sec || (skb->cb[0] == 1)) {
|
||||
if ((iv32 < tkey->rx_iv32 ||
|
||||
(iv32 == tkey->rx_iv32 && iv16 <= tkey->rx_iv16)) &&
|
||||
tkey->initialized) {
|
||||
|
@ -102,7 +102,7 @@ static int prism2_wep_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
/* Copy rest of the WEP key (the secret part) */
|
||||
memcpy(key + 3, wep->key, wep->key_len);
|
||||
|
||||
if (!tcb_desc->bHwSec) {
|
||||
if (!tcb_desc->hw_sec) {
|
||||
/* Append little-endian CRC32 and encrypt it to produce ICV */
|
||||
crc = ~crc32_le(~0, pos, len);
|
||||
icv = skb_put(skb, 4);
|
||||
@ -155,7 +155,7 @@ static int prism2_wep_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
|
||||
/* Apply RC4 to data and compute CRC32 over decrypted data */
|
||||
plen = skb->len - hdr_len - 8;
|
||||
|
||||
if (!tcb_desc->bHwSec) {
|
||||
if (!tcb_desc->hw_sec) {
|
||||
arc4_setkey(&wep->rx_ctx_arc4, key, klen);
|
||||
arc4_crypt(&wep->rx_ctx_arc4, pos, pos, plen + 4);
|
||||
|
||||
|
@ -282,10 +282,10 @@ rtllib_rx_frame_decrypt(struct rtllib_device *ieee, struct sk_buff *skb,
|
||||
struct cb_desc *tcb_desc = (struct cb_desc *)
|
||||
(skb->cb + MAX_DEV_ADDR_SIZE);
|
||||
|
||||
tcb_desc->bHwSec = 1;
|
||||
tcb_desc->hw_sec = 1;
|
||||
|
||||
if (ieee->need_sw_enc)
|
||||
tcb_desc->bHwSec = 0;
|
||||
tcb_desc->hw_sec = 0;
|
||||
}
|
||||
|
||||
hdr = (struct ieee80211_hdr *)skb->data;
|
||||
@ -321,10 +321,10 @@ rtllib_rx_frame_decrypt_msdu(struct rtllib_device *ieee, struct sk_buff *skb,
|
||||
struct cb_desc *tcb_desc = (struct cb_desc *)
|
||||
(skb->cb + MAX_DEV_ADDR_SIZE);
|
||||
|
||||
tcb_desc->bHwSec = 1;
|
||||
tcb_desc->hw_sec = 1;
|
||||
|
||||
if (ieee->need_sw_enc)
|
||||
tcb_desc->bHwSec = 0;
|
||||
tcb_desc->hw_sec = 0;
|
||||
}
|
||||
|
||||
hdr = (struct ieee80211_hdr *)skb->data;
|
||||
|
@ -751,14 +751,14 @@ static int rtllib_xmit_inter(struct sk_buff *skb, struct net_device *dev)
|
||||
|
||||
if (encrypt) {
|
||||
if (ieee->hwsec_active)
|
||||
tcb_desc->bHwSec = 1;
|
||||
tcb_desc->hw_sec = 1;
|
||||
else
|
||||
tcb_desc->bHwSec = 0;
|
||||
tcb_desc->hw_sec = 0;
|
||||
skb_reserve(skb_frag,
|
||||
crypt->ops->extra_mpdu_prefix_len +
|
||||
crypt->ops->extra_msdu_prefix_len);
|
||||
} else {
|
||||
tcb_desc->bHwSec = 0;
|
||||
tcb_desc->hw_sec = 0;
|
||||
}
|
||||
frag_hdr = skb_put_data(skb_frag, &header, hdr_len);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user