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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C4704C433F5 for ; Tue, 16 Nov 2021 10:41:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AE58460F44 for ; Tue, 16 Nov 2021 10:41:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234484AbhKPKoE (ORCPT ); Tue, 16 Nov 2021 05:44:04 -0500 Received: from mail.kernel.org ([198.145.29.99]:51794 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234367AbhKPKnP (ORCPT ); Tue, 16 Nov 2021 05:43:15 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 0380C61A58; Tue, 16 Nov 2021 10:40:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1637059214; bh=d2c7/cvf4goFuY/ZG1KO0aHiDqa+L1wLp9mPZr+E3SI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=aIUOpCTIhwWaRvPJOwenE9tcC9LKRQ+cHbYLsun0xPkjVpvCA9b+2dx9aSsVUCSAM MAeJcF3JrDfjE6dHoSW/UOZGknL6V+kT71cgzfzTOW3LyT4l0IMF5XsLPp0+EN3Zw0 owYufzd99YhukQ8QB1UupBtGFEuhBbJf5p7s62+1ZImk2RplkeCqPxIyK4EPcZ6HRW dV+UIAoDkMwd4m2OT8iE4qEzZkqgz7zMyeZKr9WhjJhR3XPR1K6pM4J8q5o6P+pBqg 7Fxfiy3ErSa4IiGE1EaAagblS4p917XK+0sJcFLn4eoISAKgmBWuA/7y0YQpvuoXoA usk2OEFNU2ehg== 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 6/6] phy: ti: tusb1210: Fix the kernel-doc warn Date: Tue, 16 Nov 2021 16:09:51 +0530 Message-Id: <20211116103951.34482-6-vkoul@kernel.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20211116103951.34482-1-vkoul@kernel.org> References: <20211116103951.34482-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 comment is not kernel-doc one and starts with /**, so fix that. drivers/phy/ti/phy-tusb1210.c:16: warning: expecting prototype for tusb1210.c(). Prototype was for TUSB1210_VENDOR_SPECIFIC2() instead Signed-off-by: Vinod Koul --- drivers/phy/ti/phy-tusb1210.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/phy/ti/phy-tusb1210.c b/drivers/phy/ti/phy-tusb1210.c index a63213f5972a..15c1c79e5c29 100644 --- a/drivers/phy/ti/phy-tusb1210.c +++ b/drivers/phy/ti/phy-tusb1210.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/** +/* * tusb1210.c - TUSB1210 USB ULPI PHY driver * * Copyright (C) 2015 Intel Corporation -- 2.31.1