mirror of https://gitee.com/openkylin/linux.git
staging: rtl8192u: remove space before ')'
Fixes checkpatch.pl error: ERROR: space prohibited before that close parenthesis ')' Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2de9311b96
commit
88717504ad
|
@ -412,8 +412,8 @@ typedef struct ieee_param {
|
|||
#define IEEE80211_QCTL_TID 0x000F
|
||||
|
||||
#define FC_QOS_BIT BIT(7)
|
||||
#define IsDataFrame(pdu) (((pdu[0] & 0x0C) == 0x08) ? true : false )
|
||||
#define IsLegacyDataFrame(pdu) (IsDataFrame(pdu) && (!(pdu[0] & FC_QOS_BIT)) )
|
||||
#define IsDataFrame(pdu) (((pdu[0] & 0x0C) == 0x08) ? true : false)
|
||||
#define IsLegacyDataFrame(pdu) (IsDataFrame(pdu) && (!(pdu[0] & FC_QOS_BIT)))
|
||||
//added by wb. Is this right?
|
||||
#define IsQoSDataFrame(pframe) ((*(u16 *)pframe & (IEEE80211_STYPE_QOS_DATA | IEEE80211_FTYPE_DATA)) == (IEEE80211_STYPE_QOS_DATA | IEEE80211_FTYPE_DATA))
|
||||
#define Frame_Order(pframe) (*(u16 *)pframe & IEEE80211_FCTL_ORDER)
|
||||
|
|
Loading…
Reference in New Issue