diff options
author | Guilherme Puida Moreira <[email protected]> | 2024-07-30 06:48:12 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-07-30 09:22:02 +0200 |
commit | 9acacf22b5d35c4493a0c7a615741425cf3adc0e (patch) | |
tree | 50f245a2195f035258c34dae31239162886417a2 | |
parent | 3d7d6c7ca22582755f8e021c33f4d02014ae9f9c (diff) |
staging: rtl8723bs: place opening brace on previous line
Fix checkpatch diagnostic "ERROR: that open brace { should be on the
previous line" in rtw_security.h:173
Signed-off-by: Guilherme Puida Moreira <[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/rtw_security.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/rtl8723bs/include/rtw_security.h b/drivers/staging/rtl8723bs/include/rtw_security.h index 98afbd3054a4..c3e47d52687f 100644 --- a/drivers/staging/rtl8723bs/include/rtw_security.h +++ b/drivers/staging/rtl8723bs/include/rtw_security.h @@ -170,8 +170,7 @@ struct security_priv { #define GET_ENCRY_ALGO(psecuritypriv, psta, encry_algo, bmcst)\ do {\ - switch (psecuritypriv->dot11AuthAlgrthm)\ - {\ + switch (psecuritypriv->dot11AuthAlgrthm) {\ case dot11AuthAlgrthm_Open:\ case dot11AuthAlgrthm_Shared:\ case dot11AuthAlgrthm_Auto:\ |