mirror of https://gitee.com/openkylin/linux.git
staging: rtl8192u: add parenthesis around complex macros in r819xU_HTType.h
This patch fixes the following checkpatch error: ERROR: Macros with complex values should be enclosed in parenthesis Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b3052681e8
commit
b812fd3b57
|
@ -27,7 +27,8 @@
|
|||
|
||||
#define HT_SUPPORTED_MCS_1SS_BITMAP 0x000000ff
|
||||
#define HT_SUPPORTED_MCS_2SS_BITMAP 0x0000ff00
|
||||
#define HT_SUPPORTED_MCS_1SS_2SS_BITMAP HT_MCS_1SS_BITMAP|HT_MCS_1SS_2SS_BITMAP
|
||||
#define HT_SUPPORTED_MCS_1SS_2SS_BITMAP \
|
||||
(HT_MCS_1SS_BITMAP | HT_MCS_1SS_2SS_BITMAP)
|
||||
|
||||
|
||||
typedef enum _HT_MCS_RATE {
|
||||
|
@ -74,7 +75,7 @@ typedef enum _CHNLOP {
|
|||
|
||||
/* Determine if the Channel Operation is in progress */
|
||||
#define CHHLOP_IN_PROGRESS(_pHTInfo) \
|
||||
((_pHTInfo)->ChnlOp > CHNLOP_NONE) ? TRUE : FALSE
|
||||
(((_pHTInfo)->ChnlOp > CHNLOP_NONE) ? TRUE : FALSE)
|
||||
|
||||
|
||||
typedef enum _HT_ACTION {
|
||||
|
|
Loading…
Reference in New Issue