diff --git a/include/wifi.h b/include/wifi.h index a1fb335..a90dded 100644 --- a/include/wifi.h +++ b/include/wifi.h @@ -122,11 +122,6 @@ enum { *(unsigned short *)(pbuf) &= (~cpu_to_le16(IEEE80211_FCTL_MOREFRAGS)); \ } while (0) -#define SetRetry(pbuf) \ - do { \ - *(unsigned short *)(pbuf) |= cpu_to_le16(IEEE80211_FCTL_RETRY); \ - } while (0) - #define GetRetry(pbuf) (((*(unsigned short *)(pbuf)) & le16_to_cpu(IEEE80211_FCTL_RETRY)) != 0) #define ClearRetry(pbuf) \