From patchwork Wed Feb 21 10:32:20 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 136967 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 99FDA43B61; Wed, 21 Feb 2024 11:33:42 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5F79A410D5; Wed, 21 Feb 2024 11:32:48 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.15]) by mails.dpdk.org (Postfix) with ESMTP id 01FDA40E5E for ; Wed, 21 Feb 2024 11:32:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1708511566; x=1740047566; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=rJ9lMRjLoImZpNJ2Kzgn3sGttiBfl7+zR1TVErnx+sA=; b=a9CIcPigND9pxrhOyEYqCzs+6AqOvqrn0YKnfw+gwEp5/cPB3bZnLM7/ nlQJqUxbP2C9vFUDVvETV0cuPdLHYMXz7ppvkVQZ8E5oxW0Tm45qrC2yp YxgolOEfJe3I+KSitDeE6NdvTPeHECG1Rfdngx0qo+hHMY36AH3VXxbfA t6x4cuBGA1TK7bwsAdjO5Vbb1egGAM367K1VR7I5XjiSQohsHSJymUit1 au1Kj7xp79LuGUDPZ8vWtLj9b/6ufQM7rCXMspwhd1m72xb6TqId9Hmzl zKrKSeLx2xMdtzbQ/Q5TfJu7CKlEUzNd8dvPIHiYyFyhOS/mzUsJD80s4 w==; X-IronPort-AV: E=McAfee;i="6600,9927,10990"; a="2800756" X-IronPort-AV: E=Sophos;i="6.06,175,1705392000"; d="scan'208";a="2800756" Received: from orviesa007.jf.intel.com ([10.64.159.147]) by fmvoesa109.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Feb 2024 02:32:46 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.06,175,1705392000"; d="scan'208";a="5393028" Received: from silpixa00401385.ir.intel.com ([10.237.214.38]) by orviesa007.jf.intel.com with ESMTP; 21 Feb 2024 02:32:44 -0800 From: Bruce Richardson To: dev@dpdk.org, jerinj@marvell.com, mattias.ronnblom@ericsson.com Cc: Bruce Richardson Subject: [PATCH v4 11/12] eventdev: drop comment for anon union from doxygen Date: Wed, 21 Feb 2024 10:32:20 +0000 Message-Id: <20240221103221.933238-12-bruce.richardson@intel.com> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20240221103221.933238-1-bruce.richardson@intel.com> References: <20240119174346.108905-1-bruce.richardson@intel.com> <20240221103221.933238-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 Acked-by: Pavan Nikhilesh --- 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 7e7e275620..03748eb437 100644 --- a/lib/eventdev/rte_eventdev.h +++ b/lib/eventdev/rte_eventdev.h @@ -1571,7 +1571,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 */ @@ -1683,7 +1683,7 @@ struct rte_event { */ }; }; - /** WORD1 */ + /* WORD1 */ union { uint64_t u64; /**< Opaque 64-bit value */