mirror of https://gitee.com/openkylin/linux.git
staging: rtl8712: Add spaces around '|'
Add spaces around '|' to conform to the Linux kernel coding style. Issue found using checkpatch. CHECK: spaces preferred around that '|'. Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bb462e0ebd
commit
a51935a5b9
|
@ -63,7 +63,7 @@
|
|||
#define _IMEM_CHK_RPT BIT(1)
|
||||
#define _IMEM_CODE_DONE BIT(0)
|
||||
|
||||
#define _TXDMA_INIT_VALUE (_IMEM_CHK_RPT|_EMEM_CHK_RPT)
|
||||
#define _TXDMA_INIT_VALUE (_IMEM_CHK_RPT | _EMEM_CHK_RPT)
|
||||
|
||||
/*RCR*/
|
||||
#define _ENMBID BIT(27)
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
#define GPIOSEL_PHYDBG 1 /* PHYDBG*/
|
||||
#define GPIOSEL_BT 2 /* BT_coex*/
|
||||
#define GPIOSEL_WLANDBG 3 /* WLANDBG*/
|
||||
#define GPIOSEL_GPIO_MASK (~(BIT(0)|BIT(1)))
|
||||
#define GPIOSEL_GPIO_MASK (~(BIT(0) | BIT(1)))
|
||||
/* HW Radio OFF switch (GPIO BIT) */
|
||||
#define HAL_8192S_HW_GPIO_OFF_BIT BIT(3)
|
||||
#define HAL_8192S_HW_GPIO_OFF_MASK 0xF7
|
||||
|
|
Loading…
Reference in New Issue