From patchwork Fri Feb 2 12:39:53 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 136330 X-Patchwork-Delegate: jerinj@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A461F43A4F; Fri, 2 Feb 2024 13:41:50 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4AB5A42E98; Fri, 2 Feb 2024 13:41:12 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.18]) by mails.dpdk.org (Postfix) with ESMTP id 649A842E98 for ; Fri, 2 Feb 2024 13:41:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1706877670; x=1738413670; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=JRyy1r4mZqtGsqD8BymY8JEzhWuLRD3cJdvt0jFS7Uc=; b=UgXX1u3S9VLZxW5MZrCV5eUsb64rO+soudx1zE6votLoui04ddrOi9Zt gWoyocBiafCLVfjPYXuWSV9GGkpuy1XwVKVfUZGfzJqEjkebxw7iHNDgw ZCaCDTp1sOuulJ0E+2Z1zPnoV67W4MLmXAUNuSjkL4FQky9wJUzWq+Tzh 4WCcDBdZZZNbmiVrYE8oUHvbrg97kVfb0NrpA4+y9DQWSlgdhiAXuEmQU FmBOa1SJna5Sqen+MTsJI7sMGb3iNszBGbF/vSyiep1+yVteN8T3MDEHh ruKSfNhGytwodNSJTIVpN5eoK0XyenhYsaxQPgLznh1BbKryU7HejTItt g==; X-IronPort-AV: E=McAfee;i="6600,9927,10971"; a="54521" X-IronPort-AV: E=Sophos;i="6.05,238,1701158400"; d="scan'208";a="54521" Received: from fmviesa006.fm.intel.com ([10.60.135.146]) by fmvoesa112.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Feb 2024 04:41:07 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.05,238,1701158400"; d="scan'208";a="347701" Received: from silpixa00401385.ir.intel.com ([10.237.214.38]) by fmviesa006.fm.intel.com with ESMTP; 02 Feb 2024 04:41:05 -0800 From: Bruce Richardson To: dev@dpdk.org, jerinj@marvell.com, mattias.ronnblom@ericsson.com Cc: abdullah.sevincer@intel.com, sachin.saxena@oss.nxp.com, hemant.agrawal@nxp.com, pbhagavatula@marvell.com, pravin.pathak@intel.com, Bruce Richardson Subject: [PATCH v3 11/11] eventdev: drop comment for anon union from doxygen Date: Fri, 2 Feb 2024 12:39:53 +0000 Message-Id: <20240202123953.77166-12-bruce.richardson@intel.com> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20240202123953.77166-1-bruce.richardson@intel.com> References: <20240119174346.108905-1-bruce.richardson@intel.com> <20240202123953.77166-1-bruce.richardson@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Make the comments on the unnamed unions in the rte_event structure regular comments rather than doxygen ones. The comments do not add anything meaningful to the doxygen output. Signed-off-by: Bruce Richardson --- lib/eventdev/rte_eventdev.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/eventdev/rte_eventdev.h b/lib/eventdev/rte_eventdev.h index 58219e027e..e31c927905 100644 --- a/lib/eventdev/rte_eventdev.h +++ b/lib/eventdev/rte_eventdev.h @@ -1518,7 +1518,7 @@ struct rte_event_vector { * for dequeue and enqueue operation */ struct rte_event { - /** WORD0 */ + /* WORD0 */ union { uint64_t event; /** Event attributes for dequeue or enqueue operation */ @@ -1631,7 +1631,7 @@ struct rte_event { */ }; }; - /** WORD1 */ + /* WORD1 */ union { uint64_t u64; /**< Opaque 64-bit value */