From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 76D5C460ED; Wed, 22 Jan 2025 16:20:56 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 48A9C402D5; Wed, 22 Jan 2025 16:20:56 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 03C79402BC for ; Wed, 22 Jan 2025 16:20:55 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 5326B205A9FF; Wed, 22 Jan 2025 07:20:54 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 5326B205A9FF DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1737559254; bh=LGObwj9sl8Eze0O0Q5iuXYMTgDETBCv5FoBytGLN9M8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QVsY8gpOPxfNTNJSmuio4qHSfd0tCfIbaVUyTn+UeN1odhCFR9RgXHi9jGNBzt+IM nvoKipLySH8zpEBFBHblUHwNGfZhTAiYJXHO/s8pr0No+s15w8AjDqYoGFZpX3UTT9 nYeEmJMP9iC6CRc5r/8aeEbbTgwmqfx7R3LkYVIA= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: anatoly.burakov@intel.com, bruce.richardson@intel.com, dev@dpdk.org, ian.stokes@intel.com, konstantin.v.ananyev@yandex.ru, vladimir.medvedkin@intel.com Subject: [PATCH v2 0/2] fix void function returning a value Date: Wed, 22 Jan 2025 07:20:42 -0800 Message-Id: <1737559244-9107-1-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1735254890-18457-3-git-send-email-andremue@linux.microsoft.com> References: <1735254890-18457-3-git-send-email-andremue@linux.microsoft.com> 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 v2: * Updated commit messages to follow standard format. This patch avoids warnings like the one below emitted by MSVC, and is needed to get the code to compile cleanly with MSVC. ../drivers/common/idpf/idpf_common_rxtx_avx512.c(139): warning C4098: 'idpf_singleq_rearm': 'void' function returning a value Andre Muezerie (2): drivers/common: fix void function returning a value drivers/net: fix void function returning a value drivers/common/idpf/idpf_common_rxtx_avx512.c | 12 ++++++++---- drivers/net/i40e/i40e_rxtx_vec_avx2.c | 2 +- drivers/net/i40e/i40e_rxtx_vec_avx512.c | 2 +- drivers/net/iavf/iavf_rxtx_vec_avx2.c | 2 +- drivers/net/ice/ice_rxtx_vec_avx2.c | 2 +- 5 files changed, 12 insertions(+), 8 deletions(-) -- 2.47.2.vfs.0.1