Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3eb546057dd65ec75c900c9948684ffd5e617630
Commit:     3eb546057dd65ec75c900c9948684ffd5e617630
Parent:     669df1b478803f49a356528d290af7bf442eb3be
Author:     Zhu Yi <[EMAIL PROTECTED]>
AuthorDate: Mon Dec 18 17:26:13 2006 +0800
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Tue Jan 2 20:56:26 2007 -0500

    [PATCH] ieee80211: WLAN_GET_SEQ_SEQ fix (select correct region)
    
    The WLAN_GET_SEQ_SEQ(seq) macro in ieee80211 is selecting the wrong region.
    
    Signed-off-by: Zhu Yi <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 include/net/ieee80211.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/net/ieee80211.h b/include/net/ieee80211.h
index e6af381..e02d85f 100644
--- a/include/net/ieee80211.h
+++ b/include/net/ieee80211.h
@@ -218,7 +218,7 @@ struct ieee80211_snap_hdr {
 #define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
 
 #define WLAN_GET_SEQ_FRAG(seq) ((seq) & IEEE80211_SCTL_FRAG)
-#define WLAN_GET_SEQ_SEQ(seq)  ((seq) & IEEE80211_SCTL_SEQ)
+#define WLAN_GET_SEQ_SEQ(seq)  (((seq) & IEEE80211_SCTL_SEQ) >> 4)
 
 /* Authentication algorithms */
 #define WLAN_AUTH_OPEN 0
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to