You need to fix your From: header. On Wed, Oct 11, 2023 at 01:42:32PM -0300, drosdeck wrote: > Warning found by checkpatch.pl script. Fixes warning replacing printk to > pr_crit and fixes conding style. > > Signed-off-by: Edson Juliano Drosdeck <edson.drosdeck@xxxxxxxxx> > --- > drivers/staging/rtl8723bs/os_dep/sdio_intf.c | 21 +++++++++----------- > 1 file changed, 9 insertions(+), 12 deletions(-) > > diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c > index 490431484524..e178a6881e0c 100644 > --- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c > +++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c > @@ -48,7 +48,6 @@ static void sd_sync_int_hdl(struct sdio_func *func) > { > struct dvobj_priv *psdpriv; > > - > psdpriv = sdio_get_drvdata(func); > > if (!psdpriv->if1) > @@ -73,7 +72,7 @@ static int sdio_alloc_irq(struct dvobj_priv *dvobj) > err = sdio_claim_irq(func, &sd_sync_int_hdl); > if (err) { > dvobj->drv_dbg.dbg_sdio_alloc_irq_error_cnt++; > - printk(KERN_CRIT "%s: sdio_claim_irq FAIL(%d)!\n", __func__, err); > + pr_crit("%s: sdio_claim_irq FAIL(%d)!\n", __func__, err); Use dev_crit() instead. Otherwise the rest of the changes are fine, but you'll need to break the patch up into multiple patches. regards, dan carpenter