audio-kernel: Add missing “\n” for trace_printk() in Audio drvier.

Add missing “\n” for trace_printk() in Audio drvier.

Change-Id: I444464dc717c13330e9d4ea686340db4ccd01d6e
Signed-off-by: Yuhui Zhao <quic_yuhuzhao@quicinc.com>
This commit is contained in:
Yuhui Zhao
2022-08-17 13:14:53 +08:00
父節點 43ea99c898
當前提交 4b2a2b04ee

查看文件

@@ -546,7 +546,7 @@ static int swrm_clk_request(struct swr_mstr_ctrl *swrm, bool enable)
}
swrm->clk_ref_count++;
if (swrm->clk_ref_count == 1) {
trace_printk("%s: clock enable count %d",
trace_printk("%s: clock enable count %d\n",
__func__, swrm->clk_ref_count);
ret = swrm->clk(swrm->handle, true);
if (ret) {
@@ -557,7 +557,7 @@ static int swrm_clk_request(struct swr_mstr_ctrl *swrm, bool enable)
}
}
} else if (--swrm->clk_ref_count == 0) {
trace_printk("%s: clock disable count %d",
trace_printk("%s: clock disable count %d\n",
__func__, swrm->clk_ref_count);
swrm->clk(swrm->handle, false);
complete(&swrm->clk_off_complete);