diff options
author | Sai Sree Kartheek Adivi <[email protected]> | 2024-07-30 06:59:01 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-07-30 09:22:13 +0200 |
commit | 7537f0e7b2cd0faa4f58e3e9e64da0f95ade7a77 (patch) | |
tree | f0a4ebc6574c151efec4518f949f8a6aabb607d0 | |
parent | 9acacf22b5d35c4493a0c7a615741425cf3adc0e (diff) |
staging: rtl8723bs: style fix open brace on new line
It fixes the following checkpatch.pl error
"ERROR: that open brace { should be on the previous line" and avoids the
warning "WARNING: braces {} are not necessary for single statement blocks".
Signed-off-by: Sai Sree Kartheek Adivi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8723bs/include/osdep_service.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/rtl8723bs/include/osdep_service.h b/drivers/staging/rtl8723bs/include/osdep_service.h index cf96b5f7a776..5629123cd668 100644 --- a/drivers/staging/rtl8723bs/include/osdep_service.h +++ b/drivers/staging/rtl8723bs/include/osdep_service.h @@ -81,9 +81,7 @@ static inline void thread_enter(char *name) static inline void flush_signals_thread(void) { if (signal_pending(current)) - { flush_signals(current); - } } #define rtw_warn_on(condition) WARN_ON(condition) |