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 C2D9D45F4E; Fri, 27 Dec 2024 00:14:56 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6848A40294; Fri, 27 Dec 2024 00:14:56 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 6613D40275 for ; Fri, 27 Dec 2024 00:14:54 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 6C336203EC25; Thu, 26 Dec 2024 15:14:53 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 6C336203EC25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1735254893; bh=FY6tVTcBUwnAMXhUMoICvBdEDP0wm42IuZHPf4Ytxn0=; h=From:To:Cc:Subject:Date:From; b=hHmQZkxY5yZgL71YnaO81Dpw1F7eDp4e0LceiV6EuxwsVsm/l3xdzOkPjcZohp5xZ TBc1A/du6VHGR+IuGIefT8FOv/KqRWa9hJQArHjvyQ+u0heQ+QxmXm8IGVLX7shuDo FNvo662K1DaJFXqcmXZv7BbJLZoXeinBm1gZ7CuI= From: Andre Muezerie To: Cc: dev@dpdk.org, Andre Muezerie Subject: [PATCH 0/2] fix void function returning a value Date: Thu, 26 Dec 2024 15:14:48 -0800 Message-Id: <1735254890-18457-1-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 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 This patch avoids warnings like the one below emitted by 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.0.vfs.0.3