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 721FB4404F; Wed, 12 Jun 2024 17:23:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 060AE4326C; Wed, 12 Jun 2024 17:06:45 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) by mails.dpdk.org (Postfix) with ESMTP id 021E942FCD for ; Wed, 12 Jun 2024 17:06:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1718204802; x=1749740802; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Bcmhy1qb/sf0ErcPK44Dsq8vYuFa5wFcCgz5ZpTWaXI=; b=QfnT9GhRhX0REQdDJhALhcb2t04mMzphqSaiWUqp1G5fTAT1+xoQFfWC u9OQMfpdAzHhAEIFO35sUEXcOGaP38mqoHZ4pB+6hWxsiG/kghFKTdoK6 AC+k3q1FPMn3AeG5mc8VXkCKbIFLEYeeDoGpARcKWCDaBW55pYnFUsKmg j2BGKMJibgyAqCIqlg/TKU9mGV3OJiu7mgxHz3y+HQxPg/CsMShlW7Jja gKHG9WHKlGwJbcmm2EbwEYNv8ANQ+0DwkoEiQU7EkqZ5niRUaI1Re25GY ROiyTjg8hRvGCF2lsyQLIpiB/So00ZOELTWRmgdznZJAohL0hh5nzr327 Q==; X-CSE-ConnectionGUID: 6eY48ce3QoO5uqNakHc4/g== X-CSE-MsgGUID: XIgz24AHTue2A2K8JDb5TQ== X-IronPort-AV: E=McAfee;i="6700,10204,11101"; a="32460039" X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="32460039" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jun 2024 08:06:42 -0700 X-CSE-ConnectionGUID: CHO57nIkR628Z1pB18U24A== X-CSE-MsgGUID: //3r4hssS+qnPipF7mMkwA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="39925930" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 12 Jun 2024 08:06:41 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Ian Stokes , bruce.richardson@intel.com Subject: [PATCH v2 122/148] net/ice/base: add missing files for shared code update Date: Wed, 12 Jun 2024 16:01:56 +0100 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: <20240430154014.1026-1-ian.stokes@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 From: Ian Stokes Add missing files that are present in shared code update. Although these do not contain code add them so that shared code update matches like for like. Signed-off-by: Ian Stokes --- drivers/net/ice/base/{ice_fwlog.h => ice_vf_mbx.c} | 0 drivers/net/ice/base/{ice_fwlog.h => ice_vf_mbx.h} | 0 drivers/net/ice/base/meson.build | 1 + 3 files changed, 1 insertion(+) copy drivers/net/ice/base/{ice_fwlog.h => ice_vf_mbx.c} (100%) copy drivers/net/ice/base/{ice_fwlog.h => ice_vf_mbx.h} (100%) diff --git a/drivers/net/ice/base/ice_fwlog.h b/drivers/net/ice/base/ice_vf_mbx.c similarity index 100% copy from drivers/net/ice/base/ice_fwlog.h copy to drivers/net/ice/base/ice_vf_mbx.c diff --git a/drivers/net/ice/base/ice_fwlog.h b/drivers/net/ice/base/ice_vf_mbx.h similarity index 100% copy from drivers/net/ice/base/ice_fwlog.h copy to drivers/net/ice/base/ice_vf_mbx.h diff --git a/drivers/net/ice/base/meson.build b/drivers/net/ice/base/meson.build index 5db5675856..38ddde9e8c 100644 --- a/drivers/net/ice/base/meson.build +++ b/drivers/net/ice/base/meson.build @@ -28,6 +28,7 @@ sources = [ 'ice_parser_rt.c', 'ice_ddp.c', 'ice_fwlog.c', + 'ice_vf_mbx.c', ] error_cflags = [ -- 2.43.0