From patchwork Mon Jan 15 05:36:41 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13519318 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 D691EC3DA79 for ; Mon, 15 Jan 2024 05:37:19 +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=TGWbtU2PsOxBZVieHNuw2TmztvvGjDiKISICM/EmP/Q=; b=4EQXcF7kkMsUe2 9nNcEi7fK4D7fVxvsJ4y7lu6PqvAKKOMbA9xX/1JVarYEIWLMU/HTum6kHgBYdnamX9lwCuHDOZXP Jxu103VHlFCCy6Ln3HzjaWki5EhsJo5esbVCDN2CFGzxCE6JjHyMr6LDcv8VRsijA+BKB4xuUDThb QbXU4h/YT8cMF6JftHtiPxrgtBwbhXUYqoMDmJIE0yF0wAsSOTTkUy3hhK1euEBFPgphdfM2WwriN ZHkjK4iRKkCrlFiT/t44T0pF1+Aj6wwrl6UojHWuNUfvNaBd39+4ZuK7jpp+MWyZj9vWsXAi2Cgi5 RWLZafhwpF1AzMQ4ugqQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1rPFeO-007o9h-2y; Mon, 15 Jan 2024 05:36:44 +0000 Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1rPFeM-007o9K-0K; Mon, 15 Jan 2024 05:36:42 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Patrice Chotard , linux-arm-kernel@lists.infradead.org, Daniel Lezcano , Thomas Gleixner Subject: [PATCH] clocksource: arm_global_timer: fix non-kernel-doc comment Date: Sun, 14 Jan 2024 21:36:41 -0800 Message-ID: <20240115053641.29129-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.43.0 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 a common C comment "/*" instead of a kernel-doc marker "/**" to prevent kernel-doc warnings: arm_global_timer.c:92: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * To ensure that updates to comparator value register do not set the arm_global_timer.c:92: warning: missing initial short description on line: * To ensure that updates to comparator value register do not set the Signed-off-by: Randy Dunlap Cc: Patrice Chotard Cc: linux-arm-kernel@lists.infradead.org Cc: Daniel Lezcano Cc: Thomas Gleixner --- drivers/clocksource/arm_global_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -- a/drivers/clocksource/arm_global_timer.c b/drivers/clocksource/arm_global_timer.c --- a/drivers/clocksource/arm_global_timer.c +++ b/drivers/clocksource/arm_global_timer.c @@ -88,7 +88,7 @@ static u64 gt_counter_read(void) return _gt_counter_read(); } -/** +/* * To ensure that updates to comparator value register do not set the * Interrupt Status Register proceed as follows: * 1. Clear the Comp Enable bit in the Timer Control Register.