|
@@ -532,9 +532,8 @@ void zd_mac_tx_failed(struct urb *urb)
|
|
tx_hdr = (struct ieee80211_hdr *)skb->data;
|
|
tx_hdr = (struct ieee80211_hdr *)skb->data;
|
|
|
|
|
|
/* we skip all frames not matching the reported destination */
|
|
/* we skip all frames not matching the reported destination */
|
|
- if (unlikely(memcmp(tx_hdr->addr1, tx_status->mac, ETH_ALEN))) {
|
|
|
|
|
|
+ if (unlikely(!ether_addr_equal(tx_hdr->addr1, tx_status->mac)))
|
|
continue;
|
|
continue;
|
|
- }
|
|
|
|
|
|
|
|
/* we skip all frames not matching the reported final rate */
|
|
/* we skip all frames not matching the reported final rate */
|
|
|
|
|
|
@@ -997,7 +996,7 @@ static int filter_ack(struct ieee80211_hw *hw, struct ieee80211_hdr *rx_hdr,
|
|
continue;
|
|
continue;
|
|
|
|
|
|
tx_hdr = (struct ieee80211_hdr *)skb->data;
|
|
tx_hdr = (struct ieee80211_hdr *)skb->data;
|
|
- if (likely(!memcmp(tx_hdr->addr2, rx_hdr->addr1, ETH_ALEN)))
|
|
|
|
|
|
+ if (likely(ether_addr_equal(tx_hdr->addr2, rx_hdr->addr1)))
|
|
{
|
|
{
|
|
found = 1;
|
|
found = 1;
|
|
break;
|
|
break;
|