From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 0054035DA6C; Wed, 20 May 2026 17:40:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779298805; cv=none; b=L7O3CgvOMTaFJU0GOLdLNTNuWGrEpxsV9/k+gCmAafellbxPwMsx7lVvd25Khgb9S9orWi73GQk9AipeDBk/hDlCB46hmOwww3lP6q1OSYGhK+BEr6FMlp5TC2HkOdNXMK25PF8bzryFjYMGYZNujCyN4QBWfgFhSaVjB7yq7mQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779298805; c=relaxed/simple; bh=pVelMg8F4YXButwV+6TPCuFQaDJdY+W5zynoCt5OdT0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MwL18mi5uqM0+sGfpR2JDGRVa6O+EntKNHHiCAoO8kLKNTwlxxHsdrl7MAigG/O46iZP6vGC9JVmfAp9ZGo7sDNniOI5khUgtAY7XUKHkEUTTqN3Oh4QWIFsPZUTUHjI3tPmAWlmYSXSWsGhA+k/XxzJixK9j/YPajUyf+dB60E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ODxXs+GQ; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ODxXs+GQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6B3531F000E9; Wed, 20 May 2026 17:40:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779298803; bh=736M7cqHLOGfElk2rR3K4IefhUiPh151W5vwOcfHISA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=ODxXs+GQe4b0m3sjfXG0tMJs23v5ALS9B3FtuDKtA3NfNk1azM8+jslpsDLU9YPzP +6j8/39qItdSZFddFeAh0h5vBeXDhBpRQVQ8NdyzNtGzxXzh13SVahc14Wf2aIIKg+ SggeIZNgE70oCzCLm2Hg1xuA03FLNI1Opfpm96vY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dmitry Baryshkov , Abel Vesa , Konrad Dybcio , Taniya Das , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.18 550/957] clk: qcom: dispcc-sm8450: use RCG2 ops for DPTX1 AUX clock source Date: Wed, 20 May 2026 18:17:13 +0200 Message-ID: <20260520162146.461292754@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162134.554764788@linuxfoundation.org> References: <20260520162134.554764788@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Baryshkov [ Upstream commit 141af1be817c42c7f1e1605348d4b1983d319bea ] The clk_dp_ops are supposed to be used for DP-related clocks with a proper MND divier. Use standard RCG2 ops for dptx1_aux_clk_src, the same as all other DPTX AUX clocks in this driver. Fixes: 16fb89f92ec4 ("clk: qcom: Add support for Display Clock Controller on SM8450") Signed-off-by: Dmitry Baryshkov Reviewed-by: Abel Vesa Reviewed-by: Konrad Dybcio Reviewed-by: Taniya Das Link: https://lore.kernel.org/r/20260112-dp-aux-clks-v1-2-456b0c11b069@oss.qualcomm.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/clk/qcom/dispcc-sm8450.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/qcom/dispcc-sm8450.c b/drivers/clk/qcom/dispcc-sm8450.c index 9ce9fd28e55b2..2e91332dd92ab 100644 --- a/drivers/clk/qcom/dispcc-sm8450.c +++ b/drivers/clk/qcom/dispcc-sm8450.c @@ -409,7 +409,7 @@ static struct clk_rcg2 disp_cc_mdss_dptx1_aux_clk_src = { .parent_data = disp_cc_parent_data_1, .num_parents = ARRAY_SIZE(disp_cc_parent_data_1), .flags = CLK_SET_RATE_PARENT, - .ops = &clk_dp_ops, + .ops = &clk_rcg2_ops, }, }; -- 2.53.0