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 C66A3C25B08 for ; Sun, 14 Aug 2022 15:29:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240434AbiHNP3k (ORCPT ); Sun, 14 Aug 2022 11:29:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38446 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240287AbiHNP2w (ORCPT ); Sun, 14 Aug 2022 11:28:52 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 79585B1E6; Sun, 14 Aug 2022 08:28:51 -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 ams.source.kernel.org (Postfix) with ESMTPS id 2E3C5B80B56; Sun, 14 Aug 2022 15:28:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DAEA9C433D7; Sun, 14 Aug 2022 15:28:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1660490929; bh=G2K9/tvgzYCsdb49HzRkvEhTlNWWJDNeuDTwoROSywg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZBMdQORFxsmQSm93Qs+bSQYbP4QKmuyAYwK2ddkz+n5UhPrL6Zj9lr22cdAfYeRE2 MN0pDo/BZR5hVikpqs/k/5e61sbuKyocCvbhPeBsYQUhBaSaNghP6KIiednbgfC2cZ IWTSVsetfi1un5fyKLU9cwH+4YFAnlE+XVi+xCDRXz8WtJqqx3cgKLbE/DDag1QniJ mbCEgur0yX0HN3F1mk32OSJCEuiGTD9Aw5lQCILWrVQAVx+L8d424of6BpNX/HCSCG wdEi4YyPAGiYzbmKBoWieKpj7VpDTH393cSCnksa5aGsvdcjC9Rj3aeDlcw/N5SFfL EkMLYIHv1tlOg== 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.19 28/64] clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description Date: Sun, 14 Aug 2022 11:24:01 -0400 Message-Id: <20220814152437.2374207-28-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220814152437.2374207-1-sashal@kernel.org> References: <20220814152437.2374207-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