Commit 01eb0ce4 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Rename RxLastSeqNum - Style

Rename the member variable RxLastSeqNum to rx_last_seq_num. This change
clears the checkpatch issue with CamelCase naming.

The resulting changes are purely coding style in nature so should have
no impact on runtime code execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 02f2560c
...@@ -1028,16 +1028,16 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb, ...@@ -1028,16 +1028,16 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
true)) true))
{ {
// IEEE80211_DEBUG(IEEE80211_DL_REORDER,"%s(): pRxTS->RxLastFragNum is %d,frag is %d,pRxTS->RxLastSeqNum is %d,seq is %d\n",__func__,pRxTS->RxLastFragNum,frag,pRxTS->RxLastSeqNum,WLAN_GET_SEQ_SEQ(sc)); // IEEE80211_DEBUG(IEEE80211_DL_REORDER,"%s(): pRxTS->RxLastFragNum is %d,frag is %d,pRxTS->rx_last_seq_num is %d,seq is %d\n",__func__,pRxTS->RxLastFragNum,frag,pRxTS->rx_last_seq_num,WLAN_GET_SEQ_SEQ(sc));
if ((fc & (1<<11)) && if ((fc & (1<<11)) &&
(frag == pRxTS->RxLastFragNum) && (frag == pRxTS->RxLastFragNum) &&
(WLAN_GET_SEQ_SEQ(sc) == pRxTS->RxLastSeqNum)) { (WLAN_GET_SEQ_SEQ(sc) == pRxTS->rx_last_seq_num)) {
goto rx_dropped; goto rx_dropped;
} }
else else
{ {
pRxTS->RxLastFragNum = frag; pRxTS->RxLastFragNum = frag;
pRxTS->RxLastSeqNum = WLAN_GET_SEQ_SEQ(sc); pRxTS->rx_last_seq_num = WLAN_GET_SEQ_SEQ(sc);
} }
} }
else else
......
...@@ -44,7 +44,7 @@ struct rx_ts_record { ...@@ -44,7 +44,7 @@ struct rx_ts_record {
struct list_head rx_pending_pkt_list; struct list_head rx_pending_pkt_list;
struct timer_list rx_pkt_pending_timer; struct timer_list rx_pkt_pending_timer;
BA_RECORD rx_admitted_ba_record; /* For BA Recipient */ BA_RECORD rx_admitted_ba_record; /* For BA Recipient */
u16 RxLastSeqNum; u16 rx_last_seq_num;
u8 RxLastFragNum; u8 RxLastFragNum;
u8 num; u8 num;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment