소스 검색

msm: eva: Changing WARN to dprintk to avoid excessive loging

WARN prints the callstack along with other module information.
Because of more logs, IPI WDOG could not be handlled in time and
lead to WDOG bark.

Change-Id: I087be6e21287c0f232255c202789b752dcd7f0d5
Signed-off-by: Aniruddh Sharma <[email protected]>
Aniruddh Sharma 1 년 전
부모
커밋
b1164ed158
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      msm/eva/msm_cvp_common.c

+ 1 - 1
msm/eva/msm_cvp_common.c

@@ -196,7 +196,7 @@ struct msm_cvp_inst *cvp_get_inst_validate(struct msm_cvp_core *core,
 
 	s = cvp_get_inst(core, session_id);
 	if (!s) {
-		WARN(true, "%s session doesn't exit\n", __func__);
+		dprintk(CVP_WARN, "%s session doesn't exit\n", __func__);
 		return NULL;
 	}