From nobody Fri Sep 12 05:38:51 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 BEA80C001B0 for ; Thu, 10 Aug 2023 00:07:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229737AbjHJAHp (ORCPT ); Wed, 9 Aug 2023 20:07:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38138 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229501AbjHJAHo (ORCPT ); Wed, 9 Aug 2023 20:07:44 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AB19FE74 for ; Wed, 9 Aug 2023 17:07:43 -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=a/tB3igPuPQPji9bDIFLD+1I0YTlmH4t0wSv4ROhmQ8=; b=NKpTDiSMQJK6r+Bsyq5FrF+HGJ TN3EMlTqGVYTZ0qA5y9OkRtw6f2iOA+7EnXdvP0F37OO8DCe2bR5eOUs3AcLtJZ23D4dLe5oZxAmA xhsJJF615AjipHFE7uqeFqP25u1InxFqjg27XtzTrxpSfaNCfbgCbauESACVpE3Z9eb0gzB2ht/Yd H0ubeX2Dk55c4bVTZA5qFygDDZLaKEBthp8VRvr/5XfZho7X3Mf3671haHzWu0sNzVbkQrt15r5La QYrazHH+D/5mNHIsKf9gGOTesMaqbkXrsY+4HkRBnAHff+VZUGUFb75j+t28JJrVYBaA09eKQ3z9F JQYj3sig==; Received: from [2601:1c2:980:9ec0::2764] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1qTtDJ-00686R-1F; Thu, 10 Aug 2023 00:07:41 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , kernel test robot , Nayna Jain , Michael Ellerman , linuxppc-dev@lists.ozlabs.org Subject: [PATCH] powerpc/pseries: PLPKS: undo kernel-doc comment notation Date: Wed, 9 Aug 2023 17:07:40 -0700 Message-ID: <20230810000740.23756-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.41.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 "/**" comment format for non-kernel-doc comments. This prevents a kernel-doc warning: arch/powerpc/platforms/pseries/plpks.c:186: warning: This comment starts = with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/k= ernel-doc.rst * Label is combination of label attributes + name. Fixes: 2454a7af0f2a ("powerpc/pseries: define driver for Platform KeyStore") Signed-off-by: Randy Dunlap Reported-by: kernel test robot Link: lore.kernel.org/r/202308040430.GxmPAnwZ-lkp@intel.com Cc: Nayna Jain Cc: Michael Ellerman Cc: linuxppc-dev@lists.ozlabs.org --- arch/powerpc/platforms/pseries/plpks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -- a/arch/powerpc/platforms/pseries/plpks.c b/arch/powerpc/platforms/p= series/plpks.c --- a/arch/powerpc/platforms/pseries/plpks.c +++ b/arch/powerpc/platforms/pseries/plpks.c @@ -194,7 +194,7 @@ static struct plpks_auth *construct_auth return auth; } =20 -/** +/* * Label is combination of label attributes + name. * Label attributes are used internally by kernel and not exposed to the u= ser. */