diff options
author | Michael Straube <[email protected]> | 2021-08-16 17:58:16 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2021-08-17 19:56:06 +0200 |
commit | 3ec10b9d8ead9accdf7c46ade5ab0eca6ff9e2eb (patch) | |
tree | 12dd7803aa7a61c0d5a61f4618f87ad91b239880 | |
parent | 77cb924ec6913d3b46816dc964d83c9a775eaba0 (diff) |
staging: r8188eu: add space around operator in core/rtw_sreset.c
Add missing space around operator in core/rtw_sreset.c reported by
checkpatch.
CHECK: spaces preferred around that '|' (ctx:VxV)
Signed-off-by: Michael Straube <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/r8188eu/core/rtw_sreset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/r8188eu/core/rtw_sreset.c b/drivers/staging/r8188eu/core/rtw_sreset.c index 5084bc036424..8e1bc62e74e5 100644 --- a/drivers/staging/r8188eu/core/rtw_sreset.c +++ b/drivers/staging/r8188eu/core/rtw_sreset.c @@ -45,7 +45,7 @@ u8 sreset_get_wifi_status(struct adapter *padapter) if (WIFI_STATUS_SUCCESS != psrtpriv->Wifi_Error_Status) { DBG_88E("==>%s error_status(0x%x)\n", __func__, psrtpriv->Wifi_Error_Status); - status = (psrtpriv->Wifi_Error_Status & (~(USB_READ_PORT_FAIL|USB_WRITE_PORT_FAIL))); + status = (psrtpriv->Wifi_Error_Status & (~(USB_READ_PORT_FAIL | USB_WRITE_PORT_FAIL))); } DBG_88E("==> %s wifi_status(0x%x)\n", __func__, status); |