On Wed, Oct 23, 2024 at 08:11:55PM -0300, Rodrigo Gobbi wrote: > As part of TODO file for future work, use dyn debug api for > remaining printk statements. > > Signed-off-by: Rodrigo Gobbi <rodrigo.gobbi.7@xxxxxxxxx> > --- > I didn't use the netdev_dbg() over drivers/staging/rtl8723bs/hal/hal_com.c > because I noticed now that rtw_dump_raw_rssi_info() and the hal file is a > little broken with -DDBG_RX_SIGNAL_DISPLAY_RAW_DATA, maybe we can > fix that in a next patch. How is it broken? > diff --git a/drivers/staging/rtl8723bs/hal/hal_com.c b/drivers/staging/rtl8723bs/hal/hal_com.c > index faa6ed2b320d..5994e574ae99 100644 > --- a/drivers/staging/rtl8723bs/hal/hal_com.c > +++ b/drivers/staging/rtl8723bs/hal/hal_com.c > @@ -909,10 +909,11 @@ void rtw_dump_raw_rssi_info(struct adapter *padapter) > > for (rf_path = 0; rf_path < pHalData->NumTotalRFPath; rf_path++) { > if (!isCCKrate) { > - printk(", rx_ofdm_pwr:%d(dBm), rx_ofdm_snr:%d(dB)\n", > - psample_pkt_rssi->ofdm_pwr[rf_path], psample_pkt_rssi->ofdm_snr[rf_path]); > + pr_debug(", rx_ofdm_pwr:%d(dBm), rx_ofdm_snr:%d(dB)\n", > + psample_pkt_rssi->ofdm_pwr[rf_path], > + psample_pkt_rssi->ofdm_snr[rf_path]); > } else { > - printk("\n"); > + pr_debug("\n"); Just delete this line. > } > } > } > diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c > index d18fde4e5d6c..b845089e8d8e 100644 > --- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c > +++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c > @@ -72,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); ^^^^^^^? regards, dan carpenter