From nobody Tue Sep 16 13:47:31 2025 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 9C9DBC3DA7A for ; Mon, 2 Jan 2023 21:16:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232994AbjABVQ0 (ORCPT ); Mon, 2 Jan 2023 16:16:26 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59362 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232770AbjABVQR (ORCPT ); Mon, 2 Jan 2023 16:16:17 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B3060A44D for ; Mon, 2 Jan 2023 13:16:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; 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=JXtvhHvWzIHQPuNeBeoCkgU8wFjBB1XzC954y/8TQCU=; b=uZ3b34JknfiJ/XYwVfdzr1x7QW YO9jFUyixkwz8tTMR2XM352DNe9JqLnxjhU9hEIlip5lVQUX5Dzut2eC6R77GlbgrJqVgd+Y+fvqo 3VQ9RueDgsYP8RdAtXUeIHYep6D0gdTPUMxnwWkBp5nT+3hlQ9S//YtRFf3GwztJEfyMwTLmx0vOP UO83DGAx7rDA/5xJ/RtYi2CBjJJ/sUnk92tUOLUKrF+o0mfhnZVnN8aUbKBuMDYdHT3NNIW/izAKY NJFEZMFlcjt78Js81NOsPan/a02whbeL5rJ5c8RISzy1kjptcVs6WRVQA2zyEPQ3Ls14Eq6YoGvJ0 66K5ET5A==; Received: from [2601:1c2:d80:3110::a2e7] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1pCSAJ-00EIs0-J3; Mon, 02 Jan 2023 21:16:15 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Neal Cardwell , Eric Dumazet , "David S . Miller" , Andrew Morton Subject: [PATCH] lib/win_minmax: use /* notation for regular comments Date: Mon, 2 Jan 2023 13:16:14 -0800 Message-Id: <20230102211614.26343-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.39.0 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" Don't use kernel-doc "/**" notation for non-kernel-doc comments. Prevents a kernel-doc warning: lib/win_minmax.c:31: warning: expecting prototype for lib/minmax.c(). Proto= type was for minmax_subwin_update() instead Signed-off-by: Randy Dunlap Cc: Neal Cardwell Cc: Eric Dumazet Cc: David S. Miller Cc: Andrew Morton --- lib/win_minmax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -- a/lib/win_minmax.c b/lib/win_minmax.c --- a/lib/win_minmax.c +++ b/lib/win_minmax.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/** +/* * lib/minmax.c: windowed min/max tracker * * Kathleen Nichols' algorithm for tracking the minimum (or maximum)