On Mon, Apr 04, 2022 at 11:16:11PM -0400, Sevinj Aghayeva wrote: > Adhere to Linux kernel coding style. > > Reported by checkpatch: > > WARNING: suspect code indent for conditional statements > > Signed-off-by: Sevinj Aghayeva <sevinj.aghayeva@xxxxxxxxx> > --- > drivers/staging/rtl8723bs/core/rtw_mlme_ext.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c > index c06be65b45cf..5eddff488f27 100644 > --- a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c > +++ b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c > @@ -5145,9 +5145,9 @@ void link_timer_hdl(struct timer_list *t) > if (++pmlmeinfo->reauth_count > REAUTH_LIMIT) { > /* if (pmlmeinfo->auth_algo != dot11AuthAlgrthm_Auto) */ > /* */ > - pmlmeinfo->state = 0; > - report_join_res(padapter, -1); > - return; > + pmlmeinfo->state = 0; > + report_join_res(padapter, -1); > + return; > /* */ > /* else */ > /* */ Please remove these comments around here at the same time, as the indentation did make sense with those there, but now it's really messy. thanks, greg k-h