diff --git a/drivers/media/platform/msm/vidc/hfi_packetization.c b/drivers/media/platform/msm/vidc/hfi_packetization.c index 1b6e80598db4c5691faa68ed0d41f265dc2fb473..646a42d33882e0d115398918b9eab6b70547668a 100644 --- a/drivers/media/platform/msm/vidc/hfi_packetization.c +++ b/drivers/media/platform/msm/vidc/hfi_packetization.c @@ -906,7 +906,7 @@ int create_pkt_cmd_session_set_property( hfi = (struct hfi_enable *) &pkt->rg_property_data[1]; hfi->enable = !(((struct hfi_enable *) pdata)->enable); pkt->size += sizeof(u32) * 2; - dprintk(VIDC_ERR, "Setting Final Priority to %d\n", hfi->enable); + dprintk(VIDC_DBG, "Setting Final Priority to %d\n", hfi->enable); break; } case HAL_PARAM_BUFFER_COUNT_ACTUAL: diff --git a/drivers/media/platform/msm/vidc/msm_vdec.c b/drivers/media/platform/msm/vidc/msm_vdec.c index 0f294692883f08fed5d0a0e944391d41e46f9a85..6e916635ca2db31cf92158763e3f01f6c5b515bf 100644 --- a/drivers/media/platform/msm/vidc/msm_vdec.c +++ b/drivers/media/platform/msm/vidc/msm_vdec.c @@ -2139,7 +2139,6 @@ static int try_set_ctrl(struct msm_vidc_inst *inst, struct v4l2_ctrl *ctrl) property_id = HAL_CONFIG_REALTIME; hal_property.enable = ctrl->val; pdata = &hal_property; - dprintk(VIDC_ERR, "Priority set to %d\n", hal_property.enable); break; default: break; diff --git a/drivers/media/platform/msm/vidc/msm_venc.c b/drivers/media/platform/msm/vidc/msm_venc.c index d9f64b3cb69106bab38385c9ed9f518ebdccc8b6..c3a1e036ab25e662e1772c345799f221a792fcb5 100644 --- a/drivers/media/platform/msm/vidc/msm_venc.c +++ b/drivers/media/platform/msm/vidc/msm_venc.c @@ -2668,7 +2668,6 @@ static int try_set_ctrl(struct msm_vidc_inst *inst, struct v4l2_ctrl *ctrl) property_id = HAL_CONFIG_REALTIME; enable.enable = ctrl->val; pdata = &enable; - dprintk(VIDC_ERR, "Priority set to %d\n", enable.enable); break; default: dprintk(VIDC_ERR, "Unsupported index: %x\n", ctrl->id); diff --git a/drivers/media/platform/msm/vidc/msm_vidc_common.c b/drivers/media/platform/msm/vidc/msm_vidc_common.c index 41e2d82492d4138b35626e1ff3c6e14aa3e1155f..4124b626b91a7b2ceb063725327b9dff97e4e4ab 100644 --- a/drivers/media/platform/msm/vidc/msm_vidc_common.c +++ b/drivers/media/platform/msm/vidc/msm_vidc_common.c @@ -84,7 +84,6 @@ static inline bool is_non_realtime_session(struct msm_vidc_inst *inst) .id = V4L2_CID_MPEG_VIDC_VIDEO_PRIORITY }; rc = v4l2_g_ctrl(&inst->ctrl_handler, &ctrl); - dprintk(VIDC_ERR, "RC: %d, value: %d\n", rc, ctrl.value); if (!rc && ctrl.value) return true; return false; @@ -172,9 +171,9 @@ static int msm_comm_get_inst_load(struct msm_vidc_inst *inst, if ((is_non_realtime_session(inst)) && (quirks & LOAD_CALC_IGNORE_NON_REALTIME_LOAD)) { load = msm_comm_get_mbs_per_sec(inst)/inst->prop.fps; - dprintk(VIDC_ERR, "NON REALTIME Session so load is: %d", load); + dprintk(VIDC_DBG, "NON REALTIME Session so load is: %d", load); } else - dprintk(VIDC_ERR, "REALTIME Session so load is: %d", load); + dprintk(VIDC_DBG, "REALTIME Session so load is: %d", load); return load; }