On 03/08/2021 09:53, Colin King wrote: > From: Colin Ian King <colin.king@xxxxxxxxxxxxx> > > There are spelling mistakes in a RT_TRACE message and a comment. Fix them. > > Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> > --- > drivers/staging/r8188eu/core/rtw_mlme.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/r8188eu/core/rtw_mlme.c b/drivers/staging/r8188eu/core/rtw_mlme.c > index a6d62074289f..a2c1e03e874f 100644 > --- a/drivers/staging/r8188eu/core/rtw_mlme.c > +++ b/drivers/staging/r8188eu/core/rtw_mlme.c > @@ -1243,11 +1243,10 @@ void rtw_joinbss_event_prehandle(struct adapter *adapter, u8 *pbuf) > RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, ("adhoc mode, fw_state:%x", get_fwstate(pmlmepriv))); > } > > - /* s5. Cancle assoc_timer */ > + /* s5. Cancel assoc_timer */ > _cancel_timer(&pmlmepriv->assoc_timer, &timer_cancelled); > > - RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, ("Cancle assoc_timer\n")); > - > + RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, ("cancel assoc_timer\n")); > } else { > RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_, ("rtw_joinbss_event_callback err: fw_state:%x", get_fwstate(pmlmepriv))); > spin_unlock_bh(&pmlmepriv->scanned_queue.lock); > NAK. I've found a bunch more typos in this driver, I'll send a V2 including this fix. Colin