ath10k_get_tid(hdr, tid, sizeof(tid)),
                   is_multicast_ether_addr(ieee80211_get_DA(hdr)) ?
                                                        "mcast" : "ucast",
-                  (__le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ) >> 4,
+                  IEEE80211_SEQ_TO_SN(__le16_to_cpu(hdr->seq_ctrl)),
                   (status->encoding == RX_ENC_LEGACY) ? "legacy" : "",
                   (status->encoding == RX_ENC_HT) ? "ht" : "",
                   (status->encoding == RX_ENC_VHT) ? "vht" : "",
        last_pn = &peer->frag_tids_last_pn[tid];
        new_pn.pn48 = ath10k_htt_rx_h_get_pn(ar, skb, offset, enctype);
        frag_number = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
-       seq = (__le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ) >> 4;
+       seq = IEEE80211_SEQ_TO_SN(__le16_to_cpu(hdr->seq_ctrl));
 
        if (frag_number == 0) {
                last_pn->pn48 = new_pn.pn48;
 
        hdr_space = ieee80211_hdrlen(hdr->frame_control);
        sc = __le16_to_cpu(hdr->seq_ctrl);
-       seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
+       seq = IEEE80211_SEQ_TO_SN(sc);
        frag = sc & IEEE80211_SCTL_FRAG;
 
        sec_index = MS(rx_desc_info, HTT_RX_DESC_HL_INFO_MCAST_BCAST) ?