Skip to content

Commit 9a6c13b

Browse files
committed
drm/msm/dpu: correct MERGE_3D length
Each MERGE_3D block has just two registers. Correct the block length accordingly. Fixes: 4369c93 ("drm/msm/dpu: initial support for merge3D hardware block") Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com> Patchwork: https://patchwork.freedesktop.org/patch/542177/ Reviewed-by: Marijn Suijten <marijn.suijten@somainline.org> Link: https://lore.kernel.org/r/20230613001004.3426676-3-dmitry.baryshkov@linaro.org
1 parent 0b78be6 commit 9a6c13b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ static const struct dpu_pingpong_sub_blks sc7280_pp_sblk = {
508508
#define MERGE_3D_BLK(_name, _id, _base) \
509509
{\
510510
.name = _name, .id = _id, \
511-
.base = _base, .len = 0x100, \
511+
.base = _base, .len = 0x8, \
512512
.features = MERGE_3D_SM8150_MASK, \
513513
.sblk = NULL \
514514
}

0 commit comments

Comments
 (0)