disp: msm: sde: fix wrong message arguments in sde

Fix debug message arguments in sde which are found with
-Wformat-extra-args and -Wstrict-prototypes compilation
flag and add compile flags to msm compilation.

Change-Id: Ic7f30e0cab3ea16b7f2a34658262b6f51da259e9
Signed-off-by: Raviteja Tamatam <quic_travitej@quicinc.com>
Signed-off-by: Nilaan Gunabalachandran <quic_ngunabal@quicinc.com>
This commit is contained in:
Raviteja Tamatam
2022-11-07 12:39:19 -08:00
committed by Nilaan Gunabalachandran
parent a2d05648c2
commit 4f8c2cf667
5 changed files with 8 additions and 6 deletions

View File

@@ -82,6 +82,8 @@ ifeq ($(call cc-option-yn, -Wheader-guard),y)
EXTRA_CFLAGS += -Wheader-guard
endif
EXTRA_CFLAGS += -Wformat-extra-args -Wstrict-prototypes
ifneq ($(MODNAME), qdsp6v2)
CHIP_NAME ?= $(MODNAME)
CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"

View File

@@ -640,7 +640,7 @@ void sde_core_perf_crtc_update_uidle(struct drm_crtc *crtc,
if (!fps)
fps = sde_crtc_get_fps_mode(tmp_crtc);
SDE_DEBUG("crtc=%d fps:%d wb:%d cwb:%d dis:%d en:%d\n",
SDE_DEBUG("crtc=%d fps:%d wb:%d cwb:%d uidle:%d uidle_crtc:%d en:%d\n",
tmp_crtc->base.id, fps,
_sde_core_perf_is_wb(tmp_crtc),
_sde_core_perf_is_cwb(tmp_crtc),

View File

@@ -6138,7 +6138,7 @@ void sde_encoder_misr_sign_event_notify(struct drm_encoder *drm_enc)
phys = sde_enc->phys_encs[i];
if (!phys || !phys->ops.collect_misr) {
SDE_DEBUG("invalid misr ops\n", i);
SDE_DEBUG("invalid misr ops idx:%d\n", i);
continue;
}

View File

@@ -1211,14 +1211,14 @@ static int sde_encoder_phys_wb_atomic_check(struct sde_encoder_phys *phys_enc,
return -EINVAL;
}
SDE_DEBUG("[enc:%d wb:%d] fb_id:%u, wxh:%ux%u, fb_fmt:%x,%llx, roi:{%d,%d,%d,%d}, rot:%d\n",
SDE_DEBUG("[enc:%d wb:%d] fb_id:%u, wxh:%ux%u, fb_fmt:%x,%llx, roi:{%d,%d,%d,%d}, rot:%u\n",
DRMID(phys_enc->parent), WBID(wb_enc), fb->base.id, fb->width, fb->height,
fb->format->format, fb->modifier, wb_roi.x, wb_roi.y, wb_roi.w, wb_roi.h,
rotation_type);
rc = _sde_encoder_phys_wb_validate_output_fmt(phys_enc, fb, rotation_type);
if (rc) {
SDE_ERROR("[enc:%d wb:%d] output fmt validation failed fb:%u fmt:0x%x mod:0x%x\n",
SDE_ERROR("[enc:%d wb:%d] output fmt failed fb:%u fmt:0x%x mod:0x%x rot:%d",
DRMID(phys_enc->parent), WBID(wb_enc), fb->base.id,
fb->format->format, fb->modifier, rotation_type);
return rc;

View File

@@ -659,7 +659,7 @@ static struct notifier_block sde_md_notify_blk = {
.priority = INT_MAX,
};
static int sde_register_md_panic_notifer()
static int sde_register_md_panic_notifer(void)
{
qcom_va_md_register("display", &sde_md_notify_blk);
return 0;
@@ -682,7 +682,7 @@ void sde_mini_dump_add_va_region(const char *name, u32 size, void *virt_addr)
return;
}
#else
static int sde_register_md_panic_notifer()
static int sde_register_md_panic_notifer(void)
{
return 0;
}