From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EA958357A4A; Tue, 17 Mar 2026 17:01:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773766888; cv=none; b=AhaPERSi1ndEcWigTqT1mhM3MRaGxnwBA7f5Psa0zYE9RRFkZ+ZvdHIG4/Z+DFG9i4l15pM7S2QiS2dwzL0Ro9B+T+FezJ1eHbgTujBiWUIa/5PiWPFXn/2X7QyOum9pED3LkLwFbYTD52G9Y45zheCFEogwH4WO+n0lvg+9w9o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773766888; c=relaxed/simple; bh=iWOeUcebkEGekIOmnsSEV1/CljAU9x4jhx8ySu4lYnI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZyP+Q9UdP60RSDXePPPemU0eZTQbGxFV406VsDFFV2C6zNW6DE2D1dRqg10IU+J44TsUDFjWQQnJ5Muy7cuNOpP16ikuAadpXIYB1lud0x9TlbXtAOR1yk2ji8Qp/HTuRIAzJMCUlWdgYdVL2FwkxUMbefXB4rvVKik0XPQzj4I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=r+XfLAbD; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="r+XfLAbD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4399AC4CEF7; Tue, 17 Mar 2026 17:01:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1773766887; bh=iWOeUcebkEGekIOmnsSEV1/CljAU9x4jhx8ySu4lYnI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=r+XfLAbDnfWrsUhw9r136V8BlfuTAKeUyDu/1rb+WZHl8gKSoYMcc+sZjWZGRe1u/ My+JOymwclMqqblybwOcBT/n5nhdapXJ0y+sygVIqa490ZfW+VY2EXSnxq6sfeWHeu nl6IACD9byTTBYPmcKaVWHracRsA7SeufrHplmYs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Abhinav Kumar , Yongxing Mou , Konrad Dybcio , Dmitry Baryshkov Subject: [PATCH 6.19 310/378] drm/msm/dpu: Correct the SA8775P intr_underrun/intr_underrun index Date: Tue, 17 Mar 2026 17:34:27 +0100 Message-ID: <20260317163018.403831601@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260317163006.959177102@linuxfoundation.org> References: <20260317163006.959177102@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Abhinav Kumar commit 4ce71cea574658f5c5c7412b1a3cc54efe4f9b50 upstream. The intr_underrun and intr_vsync indices have been swapped, just simply corrects them. Cc: stable@vger.kernel.org Fixes: b139c80d181c ("drm/msm/dpu: Add SA8775P support") Signed-off-by: Abhinav Kumar Signed-off-by: Yongxing Mou Reviewed-by: Konrad Dybcio Reviewed-by: Dmitry Baryshkov Patchwork: https://patchwork.freedesktop.org/patch/709209/ Link: https://lore.kernel.org/r/20260305-mdss_catalog-v5-2-06678ac39ac7@oss.qualcomm.com Signed-off-by: Dmitry Baryshkov Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_8_4_sa8775p.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_8_4_sa8775p.h +++ b/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_8_4_sa8775p.h @@ -366,8 +366,8 @@ static const struct dpu_intf_cfg sa8775p .type = INTF_NONE, .controller_id = MSM_DP_CONTROLLER_0, /* pair with intf_0 for DP MST */ .prog_fetch_lines_worst_case = 24, - .intr_underrun = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17), - .intr_vsync = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16), + .intr_underrun = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 16), + .intr_vsync = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 17), }, { .name = "intf_7", .id = INTF_7, .base = 0x3b000, .len = 0x280,