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 33DDFC433EF for ; Sat, 20 Nov 2021 06:15:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236300AbhKTGS6 (ORCPT ); Sat, 20 Nov 2021 01:18:58 -0500 Received: from mail.kernel.org ([198.145.29.99]:57214 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236265AbhKTGSq (ORCPT ); Sat, 20 Nov 2021 01:18:46 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 631D360E9C; Sat, 20 Nov 2021 06:15:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1637388943; bh=BlDTN/fYlJgH1aIXEB5pPtTmQOvs8AurQM7U/adzSb8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DSjWLGjOpcuTRyI/E/SMlkyA9a5G5FqpidFQ++GLEn/RyeaFa29Ri561m4pIRkvMb 4sGMD5jJ5wgkjxtip31RBavsB217c/RQpxGrVi+GtPrOLYlUu/LgDcceTegKIqCQ8Z joB9vwIEGDlJJRLEIXMkZNgvuFNogmJ5/IXXiyb1Jil2qiJwB+zGn8Xj+I/GEqOAQi kFPfK495BX4HJN/JHKWO4WUXqY5rFxRo3x0Ba4jl6UPAQidGZnMXoBRIloawfBn+Dh U2hr3V5tnAY+tQPyeVYS7QPHT3yH/d18UQVLJpKRzRSiuqpRNrgyyGcjgsI9wMzqv6 G4LCj2MENaIxg== From: Vinod Koul To: Kishon Vijay Abraham I Cc: linux-phy@lists.infradead.org, Vinod Koul , Roger Quadros , Liam Beguin , linux-kernel@vger.kernel.org Subject: [PATCH v2 2/2] phy: ti: omap-usb2: Fix the kernel-doc style Date: Sat, 20 Nov 2021 11:45:31 +0530 Message-Id: <20211120061531.410771-2-vkoul@kernel.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20211120061531.410771-1-vkoul@kernel.org> References: <20211120061531.410771-1-vkoul@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The documentation uses incorrect style, so fix that. drivers/phy/ti/phy-omap-usb2.c:102: warning: Function parameter or member 'comparator' not described in 'omap_usb2_set_comparator' While at it, use a single line for function description Signed-off-by: Vinod Koul --- Changes in v2: use () for function names drivers/phy/ti/phy-omap-usb2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/phy/ti/phy-omap-usb2.c b/drivers/phy/ti/phy-omap-usb2.c index ebceb1520ce8..3a505fe5715a 100644 --- a/drivers/phy/ti/phy-omap-usb2.c +++ b/drivers/phy/ti/phy-omap-usb2.c @@ -89,9 +89,9 @@ static inline void omap_usb_writel(void __iomem *addr, unsigned int offset, } /** - * omap_usb2_set_comparator - links the comparator present in the system with - * this phy - * @comparator - the companion phy(comparator) for this phy + * omap_usb2_set_comparator() - links the comparator present in the system with this phy + * + * @comparator: the companion phy(comparator) for this phy * * The phy companion driver should call this API passing the phy_companion * filled with set_vbus and start_srp to be used by usb phy. -- 2.31.1