diff options
author | Arushi Singhal <arushisinghal19971997@gmail.com> | 2018-03-03 11:02:34 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-06 04:03:44 -0800 |
commit | bb462e0ebdb91890d5c4a8c8b459687f804f405a (patch) | |
tree | 12e787111cfc108f396bdf081ef7831645545eb6 | |
parent | 0e2bbf657ab29e5f8194760fcca3e0fe1c59c26d (diff) | |
download | op-kernel-dev-bb462e0ebdb91890d5c4a8c8b459687f804f405a.zip op-kernel-dev-bb462e0ebdb91890d5c4a8c8b459687f804f405a.tar.gz |
staging: rtl8712: Added spaces around '+'
Add spaces around arithmetic operator '+', to conform to the Linux
kernel coding style. Issue found using checkpatch.
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>
-rw-r--r-- | drivers/staging/rtl8712/rtl8712_cmd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8712/rtl8712_cmd.h b/drivers/staging/rtl8712/rtl8712_cmd.h index 67e9e91..9181bb6 100644 --- a/drivers/staging/rtl8712/rtl8712_cmd.h +++ b/drivers/staging/rtl8712/rtl8712_cmd.h @@ -145,8 +145,8 @@ enum rtl8712_h2c_cmd { #define _SetBBReg_CMD_ _Write_BBREG_CMD_ #define _GetRFReg_CMD_ _Read_RFREG_CMD_ #define _SetRFReg_CMD_ _Write_RFREG_CMD_ -#define _DRV_INT_CMD_ (MAX_H2CCMD+1) -#define _SetRFIntFs_CMD_ (MAX_H2CCMD+2) +#define _DRV_INT_CMD_ (MAX_H2CCMD + 1) +#define _SetRFIntFs_CMD_ (MAX_H2CCMD + 2) #ifdef _RTL8712_CMD_C_ static struct _cmd_callback cmd_callback[] = { |