On Thu, Oct 20, 2022 at 09:34:07AM +0530, Praveen Kumar wrote: > On 20-10-2022 07:40, Emily Peri wrote: > > Fix the following checkpatch warnings in rtw_ioctl_set: > > 1) Add missing blankline after declaration > > 2) Replace spaces used for indent with tab > > 3) Remove space before tab > > > > Signed-off-by: Emily Peri <eperi1024@xxxxxxxxx> > > --- > > drivers/staging/rtl8723bs/core/rtw_ioctl_set.c | 5 +++-- > > 1 file changed, 3 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c b/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c > > index 8c11daff2d59..354e61a8f2bd 100644 > > --- a/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c > > +++ b/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c > > @@ -78,6 +78,7 @@ u8 rtw_do_join(struct adapter *padapter) > > goto exit; > > } else { > > int select_ret; > > + > > spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); > > select_ret = rtw_select_and_join_from_scanned_queue(pmlmepriv); > > if (select_ret == _SUCCESS) { > > @@ -311,7 +312,7 @@ u8 rtw_set_802_11_infrastructure_mode(struct adapter *padapter, > > if ((*pold_state == Ndis802_11Infrastructure) || (*pold_state == Ndis802_11IBSS)) { > > if (check_fwstate(pmlmepriv, _FW_LINKED) == true) > > rtw_indicate_disconnect(padapter); /* will clr Linked_state; before this function, we must have checked whether issue dis-assoc_cmd or not */ > > - } > > + } > > I think indentation is wrong here, it should be only 1 tab instead of 2 tabs ? Thanks Praveen for the feedback! But I think this if-statement is nested inside another one beginning at line 295. Can you confirm? > > > > *pold_state = networktype; > > > > @@ -367,7 +368,7 @@ u8 rtw_set_802_11_disassociate(struct adapter *padapter) > > > > u8 rtw_set_802_11_bssid_list_scan(struct adapter *padapter, struct ndis_802_11_ssid *pssid, int ssid_max_num) > > { > > - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; > > + struct mlme_priv *pmlmepriv = &padapter->mlmepriv; > > u8 res = true; > > > > if (!padapter) { > > Regards, > > ~Praveen. Now that I think about-- in this last edit I removed a space to appease checkpatch, but maybe I actually should have removed the tab? Thanks! Emily