mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
msm: vidc: Correct log tagging for kernel messages
This change amends the log tagging in kernel. CRs-fixed: 478607 Change-Id: I2c7056d8fc9ec82ffbc6824790c064033481a9af Signed-off-by: Shobhit Pandey <cshopan@codeaurora.org>
This commit is contained in:
parent
37560cd750
commit
6079d5980d
3 changed files with 4 additions and 2 deletions
|
@ -1420,7 +1420,7 @@ static long venc_set_vui_timing_info(struct video_client_ctx *client_ctx,
|
|||
if (!client_ctx)
|
||||
return -EINVAL;
|
||||
if (inst->framerate_mode == VENC_MODE_VFR) {
|
||||
WFD_MSG_ERR("VUI timing info not suported in VFR mode ");
|
||||
WFD_MSG_INFO("VUI timing info not suported in VFR mode ");
|
||||
return -EINVAL;
|
||||
}
|
||||
vcd_property_hdr.prop_id = VCD_I_ENABLE_VUI_TIMING_INFO;
|
||||
|
|
|
@ -383,7 +383,8 @@ static u32 res_trk_sel_clk_rate(unsigned long hclk_rate)
|
|||
mutex_lock(&resource_context.lock);
|
||||
if (clk_set_rate(resource_context.vcodec_clk,
|
||||
hclk_rate)) {
|
||||
VCDRES_MSG_ERROR("vidc hclk set rate failed\n");
|
||||
VCDRES_MSG_INFO("clk_rate = %u not supported\n",
|
||||
(u32)hclk_rate);
|
||||
status = false;
|
||||
} else
|
||||
resource_context.vcodec_clk_rate = hclk_rate;
|
||||
|
|
|
@ -76,6 +76,7 @@ struct res_trk_context {
|
|||
#define VCDRES_MSG_HIGH(xx_fmt...) printk(KERN_WARNING "\n" xx_fmt)
|
||||
#define VCDRES_MSG_ERROR(xx_fmt...) printk(KERN_ERR "\n err: " xx_fmt)
|
||||
#define VCDRES_MSG_FATAL(xx_fmt...) printk(KERN_ERR "\n<FATAL> " xx_fmt)
|
||||
#define VCDRES_MSG_INFO(xx_fmt...) printk(KERN_INFO "\n * " xx_fmt)
|
||||
|
||||
#ifdef CONFIG_MSM_BUS_SCALING
|
||||
int res_trk_update_bus_perf_level(struct vcd_dev_ctxt *dev_ctxt,
|
||||
|
|
Loading…
Reference in a new issue