From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DE236C25B0F for ; Sun, 14 Aug 2022 15:36:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231883AbiHNPgt (ORCPT ); Sun, 14 Aug 2022 11:36:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54682 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241027AbiHNPgI (ORCPT ); Sun, 14 Aug 2022 11:36:08 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5F4251E3D3; Sun, 14 Aug 2022 08:31:25 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 4336060C94; Sun, 14 Aug 2022 15:31:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 95B3AC433D6; Sun, 14 Aug 2022 15:31:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1660491083; bh=G2K9/tvgzYCsdb49HzRkvEhTlNWWJDNeuDTwoROSywg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tgLVoimTa0s+Y89x+dLwLaPNFeDP0d5eZEj250vzzklItKHV1Z/6LtTGZrXM7CGsg jJRBDJSVnHIqi1iZZ6oj4IKzfWH+efvR31qDWAJ3PxA2sXDTkwYTrQFkcWhnw6tWYx uYC/crUEbuaIcOaotRYdACgSHx1Wthbte+ZLr5BrIdTno0VWlAoALtBgOWgS4jHL0m wfQbTQhnSLwukXuuajdyRk5DxxmdRqaplMZ/Dg1hGWBmf3sllptpPAkFrvj7CmgeyC b3UKt2wOGR8k0uGLtVR8BWq9XSsRsXSXk2qOmbPGamf30dREuoXIF9m7BvDpgv9o2T V2Ge6i2HEjEig== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Vladimir Zapolskiy , Stephen Boyd , Vinod Koul , Bjorn Andersson , Sasha Levin , agross@kernel.org, mturquette@baylibre.com, linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org Subject: [PATCH AUTOSEL 5.18 24/56] clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description Date: Sun, 14 Aug 2022 11:29:54 -0400 Message-Id: <20220814153026.2377377-24-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220814153026.2377377-1-sashal@kernel.org> References: <20220814153026.2377377-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org From: Vladimir Zapolskiy [ Upstream commit 94bed9bb05c7850ff5d80b87cc29004901f37956 ] After merging lucid and trion pll functions in commit 0b01489475c6 ("clk: qcom: clk-alpha-pll: same regs and ops for trion and lucid") the function clk_trion_pll_configure() is left with an old description header, which results in a W=2 compile time warning, fix it. Acked-by: Stephen Boyd Reviewed-by: Vinod Koul Signed-off-by: Vladimir Zapolskiy Signed-off-by: Bjorn Andersson Link: https://lore.kernel.org/r/20220701062711.2757855-1-vladimir.zapolskiy@linaro.org Signed-off-by: Sasha Levin --- drivers/clk/qcom/clk-alpha-pll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/qcom/clk-alpha-pll.c b/drivers/clk/qcom/clk-alpha-pll.c index 4406cf609aae..288692f0ea39 100644 --- a/drivers/clk/qcom/clk-alpha-pll.c +++ b/drivers/clk/qcom/clk-alpha-pll.c @@ -1439,7 +1439,7 @@ const struct clk_ops clk_alpha_pll_postdiv_fabia_ops = { EXPORT_SYMBOL_GPL(clk_alpha_pll_postdiv_fabia_ops); /** - * clk_lucid_pll_configure - configure the lucid pll + * clk_trion_pll_configure - configure the trion pll * * @pll: clk alpha pll * @regmap: register map -- 2.35.1