Browse Source

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 <[email protected]>
Yuhui Zhao 2 years ago
parent
commit
4b2a2b04ee
1 changed files with 2 additions and 2 deletions
  1. 2 2
      soc/swr-mstr-ctrl.c

+ 2 - 2
soc/swr-mstr-ctrl.c

@@ -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);