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 1D3076FC9 for ; Sun, 17 Sep 2023 19:38:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 41221C433C7; Sun, 17 Sep 2023 19:38:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1694979499; bh=c0SwBZBfqPGmCWPY2Kv2393hxTg/xNOKA9WUhHGHYGA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mCIIK/YgBVlMzaleEEmERyeiOPy/HqpXZcD6yA6ulhHiDb5xxNVa6gbKL9DxgV5Sz 7bBg1yV4oGTdGOePL+z3GwZ2KOYUA0wLy1ucCs/ovk1WQnfi/MxlGY9o1yaojfavei 2uD1X6daozfBJMFAkLI2OpubnwUcWG8IOxxxKnrg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable@kernel.org, Neil Armstrong , Dmitry Baryshkov , Konrad Dybcio , Bjorn Andersson Subject: [PATCH 5.10 330/406] clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock Date: Sun, 17 Sep 2023 21:13:04 +0200 Message-ID: <20230917191110.003149319@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230917191101.035638219@linuxfoundation.org> References: <20230917191101.035638219@linuxfoundation.org> User-Agent: quilt/0.67 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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Baryshkov commit 1583694bb4eaf186f17131dbc1b83d6057d2749b upstream. The pll0_vote clock definitely should have pll0 as a parent (instead of pll8). Fixes: 7792a8d6713c ("clk: mdm9615: Add support for MDM9615 Clock Controllers") Cc: stable@kernel.org Reviewed-by: Neil Armstrong Signed-off-by: Dmitry Baryshkov Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20230512211727.3445575-7-dmitry.baryshkov@linaro.org Signed-off-by: Bjorn Andersson Signed-off-by: Greg Kroah-Hartman --- drivers/clk/qcom/gcc-mdm9615.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/clk/qcom/gcc-mdm9615.c +++ b/drivers/clk/qcom/gcc-mdm9615.c @@ -58,7 +58,7 @@ static struct clk_regmap pll0_vote = { .enable_mask = BIT(0), .hw.init = &(struct clk_init_data){ .name = "pll0_vote", - .parent_names = (const char *[]){ "pll8" }, + .parent_names = (const char *[]){ "pll0" }, .num_parents = 1, .ops = &clk_pll_vote_ops, },