soundwire: bus: add missing \n in dynamic debug
They were missed in previous contributions. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com> Reviewed-by: Rander Wang <rander.wang@intel.com> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com> Link: https://lore.kernel.org/r/20210511030048.25622-5-yung-chuan.liao@linux.intel.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
b50bb8ba36
commit
54a6ca4fa8
|
@ -886,7 +886,7 @@ static int sdw_bus_wait_for_clk_prep_deprep(struct sdw_bus *bus, u16 dev_num)
|
||||||
}
|
}
|
||||||
val &= SDW_SCP_STAT_CLK_STP_NF;
|
val &= SDW_SCP_STAT_CLK_STP_NF;
|
||||||
if (!val) {
|
if (!val) {
|
||||||
dev_dbg(bus->dev, "clock stop prep/de-prep done slave:%d",
|
dev_dbg(bus->dev, "clock stop prep/de-prep done slave:%d\n",
|
||||||
dev_num);
|
dev_num);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -895,7 +895,7 @@ static int sdw_bus_wait_for_clk_prep_deprep(struct sdw_bus *bus, u16 dev_num)
|
||||||
retry--;
|
retry--;
|
||||||
} while (retry);
|
} while (retry);
|
||||||
|
|
||||||
dev_err(bus->dev, "clock stop prep/de-prep failed slave:%d",
|
dev_err(bus->dev, "clock stop prep/de-prep failed slave:%d\n",
|
||||||
dev_num);
|
dev_num);
|
||||||
|
|
||||||
return -ETIMEDOUT;
|
return -ETIMEDOUT;
|
||||||
|
|
Loading…
Reference in New Issue