From nobody Wed Apr 15 21:32:51 2026 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 A77BEC433FE for ; Tue, 22 Nov 2022 02:38:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231970AbiKVCi5 (ORCPT ); Mon, 21 Nov 2022 21:38:57 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35738 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232040AbiKVCik (ORCPT ); Mon, 21 Nov 2022 21:38:40 -0500 Received: from out30-43.freemail.mail.aliyun.com (out30-43.freemail.mail.aliyun.com [115.124.30.43]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D7AC882BD9; Mon, 21 Nov 2022 18:38:32 -0800 (PST) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R151e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045170;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=12;SR=0;TI=SMTPD_---0VVQ5k.6_1669084708; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0VVQ5k.6_1669084708) by smtp.aliyun-inc.com; Tue, 22 Nov 2022 10:38:29 +0800 From: Yang Li To: mturquette@baylibre.com Cc: rdunlap@infradead.org, sboyd@kernel.org, wens@csie.org, jernej.skrabec@gmail.com, samuel@sholland.org, linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next v2] clk: Fix one kernel-doc comment Date: Tue, 22 Nov 2022 10:38:26 +0800 Message-Id: <20221122023826.101503-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" drivers/clk/sunxi-ng/ccu_mmc_timing.c:54: warning: expecting prototype for = sunxi_ccu_set_mmc_timing_mode(). Prototype was for sunxi_ccu_get_mmc_timing= _mode() instead Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D3230 Reported-by: Abaci Robot Signed-off-by: Yang Li Acked-by: Randy Dunlap Reviewed-by: Stephen Boyd --- change in v2: --According to Randy's suggestion, use the '-' replace ':' to separate func= tion name and description. drivers/clk/sunxi-ng/ccu_mmc_timing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/sunxi-ng/ccu_mmc_timing.c b/drivers/clk/sunxi-ng/c= cu_mmc_timing.c index de33414fc5c2..88c456a8e49b 100644 --- a/drivers/clk/sunxi-ng/ccu_mmc_timing.c +++ b/drivers/clk/sunxi-ng/ccu_mmc_timing.c @@ -43,7 +43,7 @@ int sunxi_ccu_set_mmc_timing_mode(struct clk *clk, bool n= ew_mode) EXPORT_SYMBOL_GPL(sunxi_ccu_set_mmc_timing_mode); =20 /** - * sunxi_ccu_set_mmc_timing_mode: Get the current MMC clock timing mode + * sunxi_ccu_get_mmc_timing_mode - Get the current MMC clock timing mode * @clk: clock to query * * Returns 0 if the clock is in old timing mode, > 0 if it is in --=20 2.20.1.7.g153144c