On Thu, May 20, 2021 at 01:26:20PM +0100, Lee Jones wrote: > Fixes the following W=1 kernel build warning(s): > > drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c: In function ‘CCX_FwC2HTxRpt_8723b’: > drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c:3355:5: warning: variable ‘seq_no’ set but not used [-Wunused-but-set-variable] > > Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> > Cc: Marco Cesati <marcocesati@xxxxxxxxx> > Cc: Fabio Aiuto <fabioaiuto83@xxxxxxxxx> > Cc: Stanley@BB.SD3 > Cc: linux-staging@xxxxxxxxxxxxxxx > Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx> > --- > drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c | 9 ++------- > 1 file changed, 2 insertions(+), 7 deletions(-) > > diff --git a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c > index 33942ab587720..0270724ccef03 100644 > --- a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c > +++ b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c > @@ -3204,14 +3204,9 @@ void CCX_FwC2HTxRpt_8723b(struct adapter *padapter, u8 *pdata, u8 len) > > if (GET_8723B_C2H_TX_RPT_RETRY_OVER(pdata) | GET_8723B_C2H_TX_RPT_LIFE_TIME_OVER(pdata)) { > rtw_ack_tx_done(&padapter->xmitpriv, RTW_SCTX_DONE_CCX_PKT_FAIL); > - } > -/* > - else if (seq_no != padapter->xmitpriv.seq_no) { > - rtw_ack_tx_done(&padapter->xmitpriv, RTW_SCTX_DONE_CCX_PKT_FAIL); > - } > -*/ > - else > + } else { > rtw_ack_tx_done(&padapter->xmitpriv, RTW_SCTX_DONE_SUCCESS); > + } The commit message was quite puzzling because "seq_no" doesn't exist. Could you resend with a fixed commit message that says "Delete commented out code" or whatever? regards, dan carpenter