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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user