On Wed, 2022-07-13 at 20:22 +0530, Srinivasa Rao Mandadapu wrote: > On 7/13/2022 7:53 PM, Pierre-Louis Bossart wrote: > Thanks for your time Pierre-Louis!!! > > > > On 7/13/22 07:22, Srinivasa Rao Mandadapu wrote: > > > Upadte error prints to debug prints to avoid redundant logging in kernel > > update [] > > > diff --git a/drivers/soundwire/qcom.c b/drivers/soundwire/qcom.c [] > > > @@ -573,11 +573,10 @@ static irqreturn_t qcom_swrm_irq_handler(int irq, void *dev_id) > > > break; > > > case SWRM_INTERRUPT_STATUS_NEW_SLAVE_ATTACHED: > > > case SWRM_INTERRUPT_STATUS_CHANGE_ENUM_SLAVE_STATUS: > > > - dev_err_ratelimited(swrm->dev, "%s: SWR new slave attached\n", > > > - __func__); > > > + dev_dbg(swrm->dev, "%s: SWR new slave attached\n", __func__); Could also drop the "%s: ", __func__ as it's already a unique message and dynamic debug could add it back if really desired.