mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 08:50:46 +07:00
staging: vt6656: rxtx s_vFillCTSHead replace TYPE_CTL_CTS macro
Replace with IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS from linux/ieee80211.h to get value of TYPE_CTL_CTS and endian correct to frame_control. Remove old macros in tether.h Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f4554d3b0e
commit
d9560ae53b
@ -742,7 +742,9 @@ static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
|
||||
pDevice->tx_rate_fb1, bNeedAck, byFBOption);
|
||||
/* Get CTS Frame body */
|
||||
pBuf->data.duration = pBuf->duration_ba;
|
||||
pBuf->data.frame_control = TYPE_CTL_CTS;
|
||||
pBuf->data.frame_control =
|
||||
cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
|
||||
|
||||
memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
|
||||
|
||||
return vnt_rxtx_datahead_g_fb(pDevice, byPktType, wCurrentRate,
|
||||
@ -758,7 +760,9 @@ static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
|
||||
wCurrentRate, bNeedAck, byFBOption);
|
||||
/*Get CTS Frame body*/
|
||||
pBuf->data.duration = pBuf->duration_ba;
|
||||
pBuf->data.frame_control = TYPE_CTL_CTS;
|
||||
pBuf->data.frame_control =
|
||||
cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
|
||||
|
||||
memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
|
||||
|
||||
return vnt_rxtx_datahead_g(pDevice, byPktType, wCurrentRate,
|
||||
|
@ -60,7 +60,6 @@
|
||||
#define TYPE_DATE_NULL 0x4800
|
||||
|
||||
#define TYPE_CTL_PSPOLL 0xa400
|
||||
#define TYPE_CTL_CTS 0xc400
|
||||
#define TYPE_CTL_ACK 0xd400
|
||||
|
||||
#else //if LITTLE_ENDIAN
|
||||
@ -90,7 +89,6 @@
|
||||
#define TYPE_DATE_NULL 0x0048
|
||||
|
||||
#define TYPE_CTL_PSPOLL 0x00a4
|
||||
#define TYPE_CTL_CTS 0x00c4
|
||||
#define TYPE_CTL_ACK 0x00d4
|
||||
|
||||
#endif //#ifdef __BIG_ENDIAN
|
||||
|
Loading…
Reference in New Issue
Block a user