From patchwork Tue Jan 17 07:01:51 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13104235 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 56E94C3DA78 for ; Tue, 17 Jan 2023 07:02:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235440AbjAQHB7 (ORCPT ); Tue, 17 Jan 2023 02:01:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50498 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235672AbjAQHBy (ORCPT ); Tue, 17 Jan 2023 02:01:54 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 45AF1233CE; Mon, 16 Jan 2023 23:01:53 -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: Content-Type:MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-ID:Content-Description:In-Reply-To:References; bh=CaJT0rYGPp0RRyxLHU+xKNZaW/U2SGXUMxBRbgTGFgg=; b=lT/6appo+nT3R1/TuuFGqOBVSZ 82hiNuahQw8K9k2uTr3Wz42KWtHlFzIHjt2Y7VARbSdmvXvR4ZVCVE6DRwgaQHc9M1ctC1ICPfHah RHbzZsZibBa5YsotGU5xSO9Q+1ph2P1fSELEmOAA90HqXhC46sA5mS7wh4PyTnVzikaX6qbEpIbDh zZrAEaLnM8fbpEHKNMCH7gDeMkxvh8ds3VBHtArJOLTUpY4WJBm/yB0AGU3gBnOzuO4aNWcCiK8xF dx3hfRIJiafHyUIkU0gSW3o+wmqap9yNfFBjkSqnlwJw3pB0qx99nFaJ+XQtHV2OYHbg/e//J34ot cg1R0fSg==; Received: from [2601:1c2:d80:3110::9307] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1pHfyi-00D77n-58; Tue, 17 Jan 2023 07:01:52 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , James Smart , Ram Vegesna , target-devel@vger.kernel.org, "James E.J. Bottomley" , "Martin K. Petersen" Subject: [PATCH] scsi: elx: libefc_sli: use "/*" for non-kernel-doc comment Date: Mon, 16 Jan 2023 23:01:51 -0800 Message-Id: <20230117070151.29339-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.39.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: target-devel@vger.kernel.org Don't use "/**" to begin non-kernel-doc comments. Prevent a kernel-doc warning: drivers/scsi/elx/libefc_sli/sli4.c:13: warning: cannot understand function prototype: 'struct sli4_asic_entry_t sli4_asic_table[] = ' Signed-off-by: Randy Dunlap Cc: James Smart Cc: Ram Vegesna Cc: target-devel@vger.kernel.org Cc: "James E.J. Bottomley" Cc: "Martin K. Petersen" --- drivers/scsi/elx/libefc_sli/sli4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -- a/drivers/scsi/elx/libefc_sli/sli4.c b/drivers/scsi/elx/libefc_sli/sli4.c --- a/drivers/scsi/elx/libefc_sli/sli4.c +++ b/drivers/scsi/elx/libefc_sli/sli4.c @@ -4,7 +4,7 @@ * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. */ -/** +/* * All common (i.e. transport-independent) SLI-4 functions are implemented * in this file. */