aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Aiuto <[email protected]>2021-04-14 10:17:39 +0200
committerGreg Kroah-Hartman <[email protected]>2021-04-14 10:41:33 +0200
commitd5c09ff06901cb869ff0f6faef3548258a0a9f44 (patch)
treed8264bc85692c10e84ad698465b780044d4a24bc
parentc567fb9da3dd0477c281a3b673f7e9ac28feb039 (diff)
staging: rtl8723bs: fix indentation issue introduced by long line split
fix indentation of last line in if condition. Fixes: af6afdb63f17 (staging: rtl8723bs: split long lines) Reported-by: Dan Carpenter <[email protected]> Signed-off-by: Fabio Aiuto <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/rtl8723bs/core/rtw_mlme_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c
index 440e22922106..873d3792ac8e 100644
--- a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c
+++ b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c
@@ -621,7 +621,7 @@ unsigned int OnProbeReq(struct adapter *padapter, union recv_frame *precv_frame)
_issue_probersp:
if ((check_fwstate(pmlmepriv, _FW_LINKED) &&
pmlmepriv->cur_network.join_res) ||
- check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE))
+ check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE))
issue_probersp(padapter, get_sa(pframe), is_valid_p2p_probereq);
}