From d59faab8587ce94d63fe049a2fa8f5be4031b9a0 Mon Sep 17 00:00:00 2001 From: Amine Najahi Date: Tue, 16 Nov 2021 17:39:07 -0500 Subject: [PATCH] disp: msm: sde: increment rounded corner HW version Increment rounded corner HW version to 1.1 Change-Id: I8b1004b84e4b897d68b08deb559ef96ea097d7b6 Signed-off-by: Amine Najahi Signed-off-by: Renchao Liu --- msm/sde/sde_hw_dspp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/msm/sde/sde_hw_dspp.c b/msm/sde/sde_hw_dspp.c index a9dfd916..e250c568 100644 --- a/msm/sde/sde_hw_dspp.c +++ b/msm/sde/sde_hw_dspp.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0-only /* + * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved. * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved. */ @@ -275,7 +276,8 @@ static void dspp_rc(struct sde_hw_dspp *c) return; } - if (c->cap->sblk->rc.version == SDE_COLOR_PROCESS_VER(0x1, 0x0)) { + if (c->cap->sblk->rc.version == SDE_COLOR_PROCESS_VER(0x1, 0x0) || + c->cap->sblk->rc.version == SDE_COLOR_PROCESS_VER(0x1, 0x1)) { ret = sde_hw_rc_init(c); if (ret) { SDE_ERROR("rc init failed, ret %d\n", ret);