From patchwork Sun Aug 8 20:52:33 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 493722 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 49952C432BE for ; Sun, 8 Aug 2021 20:52:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2F93560EB5 for ; Sun, 8 Aug 2021 20:52:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231521AbhHHUxH (ORCPT ); Sun, 8 Aug 2021 16:53:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34652 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230201AbhHHUwz (ORCPT ); Sun, 8 Aug 2021 16:52:55 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1005FC061760; Sun, 8 Aug 2021 13:52:35 -0700 (PDT) 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=obVVKT7zJZtqd8jm+BSJkYIVZxA7NA30OpaREitSbX0=; b=iYqRiOLMg7Dxg4Gbg702A8T3Mc 51ulKVmjipVAWk/AMjNRdz86/OIiDv3Rj3Ni9oxGsCjxk4xnb/vI1MP0xDcbvnw4I9QLSKGANGff/ eTuG529Bv/qdLtLAPd1TfdNlRzvLXA1AEuPGRZpsD2JrxxqQx1/Wm9QqxXYN1QRQVT1XvyJbQnj8L BmGE4iCdd4Q9KVoW2/oJL0ProDr5b5AS/K3NwJx1yABoUgjsi/LjxfpqxkyMJNIO2mnbmZtOmo3WM fhyzpAt684Yy63V+e73jcTenoqLioOghOgN9N8X2MlOR7FsDSFLu8DP4vMNZ6xn45I6JvjgVOKncz xrMRlEMQ==; Received: from [2601:1c0:6280:3f0::aa0b] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1mCpmc-00GUaC-E3; Sun, 08 Aug 2021 20:52:34 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Herbert Xu , "David S. Miller" , linux-crypto@vger.kernel.org Subject: [PATCH] crypto: wp512: correct a non-kernel-doc comment Date: Sun, 8 Aug 2021 13:52:33 -0700 Message-Id: <20210808205233.21662-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org Don't use "/**" to begin a comment that is not kernel-doc notation. crypto/wp512.c:779: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * The core Whirlpool transform. Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org --- crypto/wp512.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20210806.orig/crypto/wp512.c +++ linux-next-20210806/crypto/wp512.c @@ -775,7 +775,7 @@ static const u64 rc[WHIRLPOOL_ROUNDS] = 0xca2dbf07ad5a8333ULL, }; -/** +/* * The core Whirlpool transform. */