From 53cc1668898e82e0fbe62b5fb77108dea8a32ae8 Mon Sep 17 00:00:00 2001 From: Nilaan Gunabalachandran Date: Mon, 19 Oct 2020 11:48:15 -0400 Subject: [PATCH] disp: msm: sde: increase wb max width/height This change adds support to enable maximum output line width of 5120 for wb connector. Change-Id: I25d34e804cbf16af9eb9f78cd4146fa2023ff935 Signed-off-by: Nilaan Gunabalachandran --- msm/sde/sde_wb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msm/sde/sde_wb.c b/msm/sde/sde_wb.c index dcb308fabf..0ef6cdd134 100644 --- a/msm/sde/sde_wb.c +++ b/msm/sde/sde_wb.c @@ -14,8 +14,8 @@ #include "sde_formats.h" /* maximum display mode resolution if not available from catalog */ -#define SDE_WB_MODE_MAX_WIDTH 4096 -#define SDE_WB_MODE_MAX_HEIGHT 4096 +#define SDE_WB_MODE_MAX_WIDTH 5120 +#define SDE_WB_MODE_MAX_HEIGHT 5120 /* Serialization lock for sde_wb_list */ static DEFINE_MUTEX(sde_wb_list_lock);