From patchwork Fri Dec 9 00:20:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13069092 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7D1E7C4332F for ; Fri, 9 Dec 2022 00:21:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=1ZbeSXq2Dt7OViXY7sV6zTj/3iAZPkRvf4T+k2Pf9NI=; b=fs6gdcmhQPit3l 4SN3IYs1sL6bs3HWA1wYDL+2mnNyUXePr6ZIVDZMl0JnaPduNRlLS58RBdCyGvMM1Tg4LOal/ObRI wQ3X4Nz1dfQTz8aSnFapHo0DcXn9/lNhVCl3XAoG7qaJp5+OiXYK5+eGIi9TR/400YdTbF9BNk24o e65Vv+j2M6KNM9z4Vbd6du0WqV38q423/q+fy83/k7Bu4giuX4ZBPmKiB3eqkJoQF4F6kYfbnsipO pKmaA1cM/JI3+nJWgxXTRMroKMVN004HTpFScac75VYHjDgHVsrF1vYLp/yOtE0JgtFmlqWLY0/iD xZJRU82kt7sSl7P4mf+w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1p3R7q-00GJJ2-Ua; Fri, 09 Dec 2022 00:20:27 +0000 Received: from casper.infradead.org ([2001:8b0:10b:1236::1]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1p3R7p-00GJIn-Gn; Fri, 09 Dec 2022 00:20:25 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:In-Reply-To:References; bh=l+5hAcahIcnFsY9xQ4Jx9rT+Tc2PRQQClCgcO5NdpQY=; b=OMrMRPxzvM3DHnZXXrwC6dwnax ItlDN91IrP736ydfHjrGAqcmsLaTXwvqKv8CNrn/eNV7tjCaOW6rb2q4Jv8T4YZZonrKSRFkzRa+O wvalgetE49rDr6uc5n+vgI8XVuoEdUeB+eevlQlWp+gEcdOuXfBL7RuQFXRkoyr0x/ZG/15TOB2eO rCYuKDN7Z5Dj77qWtDIYCbolReXR0I5TMhcIBLrfPIDRQnY6P0OsMkXCPkZTSetLooEV/vcHHe80u Yd3vKu0g2/p0s31fQa5OsKyLkO4zEEHJnKPa+QdSJ/q/X0BZCsaKIBMrwgGtKVN+H2IrTLsXFfIWK gV+88ruw==; Received: from [2601:1c2:d80:3110::a2e7] (helo=casper.infradead.org) by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1p3R7t-007U9B-Gp; Fri, 09 Dec 2022 00:20:29 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , kernel test robot , Mauro Carvalho Chehab , Linus Walleij , linux-arm-kernel@lists.infradead.org, Michael Turquette , Stephen Boyd , linux-clk@vger.kernel.org Subject: [PATCH] clk: nomadik: correct struct name kernel-doc warning Date: Thu, 8 Dec 2022 16:20:16 -0800 Message-Id: <20221209002016.14776-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Use the correct struct name for the kernel-doc notation to prevent a kernel-doc warning: clk-nomadik.c:148: warning: expecting prototype for struct clk_pll1. Prototype was for struct clk_pll instead Fixes: ef6eb322ce57 ("clk: nomadik: implement the Nomadik clocks properly") Signed-off-by: Randy Dunlap Reported-by: kernel test robot Cc: Mauro Carvalho Chehab Cc: Linus Walleij Cc: linux-arm-kernel@lists.infradead.org Cc: Michael Turquette Cc: Stephen Boyd Cc: linux-clk@vger.kernel.org --- drivers/clk/clk-nomadik.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -- a/drivers/clk/clk-nomadik.c b/drivers/clk/clk-nomadik.c --- a/drivers/clk/clk-nomadik.c +++ b/drivers/clk/clk-nomadik.c @@ -138,7 +138,7 @@ out_put: } /** - * struct clk_pll1 - Nomadik PLL1 clock + * struct clk_pll - Nomadik PLL clock * @hw: corresponding clock hardware entry * @id: PLL instance: 1 or 2 */