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 BA5BF454EF; Tue, 25 Jun 2024 13:27:52 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 727664335B; Tue, 25 Jun 2024 13:19:04 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.19]) by mails.dpdk.org (Postfix) with ESMTP id F2AAD40F35 for ; Tue, 25 Jun 2024 13:17:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1719314265; x=1750850265; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Bcmhy1qb/sf0ErcPK44Dsq8vYuFa5wFcCgz5ZpTWaXI=; b=NqrdFLNfWuuWpe4/oP/NPETI6nQJJ6oZYQIYdZ/UDaghCo+F4EIFgeU0 YbRxM9sl/LJO+VH16t4WonocdXMUHZnPUODgJs4cBFVd5JiRntGMvT4Mt IMzSJ8rKiehxBioUUQ/u+O8dauGORCqxHIdLCfl5T6E0UX0WgAEzn0o+v YYv5lHSyB+4FkU2N+1GOgqebRU9bq7nlZfQWKTG93AgSIOTf9enrqX+7+ 03CIpPCEdH5JSEPggW5QA1M/XNesp+Y3yv5F6u9lPFq8zmB0UAHmoq+QX mHLiIjSHFiYMrP9QcopcjoosM8jhUz0LpjpzAE/UXjKGIdfZJxha6ZO0F A==; X-CSE-ConnectionGUID: yIETEV1KQeSSWWy5WvjbWQ== X-CSE-MsgGUID: SwfO+8JfT/qSH52JDpwg/g== X-IronPort-AV: E=McAfee;i="6700,10204,11113"; a="16080565" X-IronPort-AV: E=Sophos;i="6.08,263,1712646000"; d="scan'208";a="16080565" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by fmvoesa113.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jun 2024 04:17:44 -0700 X-CSE-ConnectionGUID: RnMbHWn7THG/DkWgSkoX/w== X-CSE-MsgGUID: FK/7JKDnTMOpXSTC29jViQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,263,1712646000"; d="scan'208";a="43719665" Received: from unknown (HELO silpixa00401119.ir.intel.com) ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 25 Jun 2024 04:17:44 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Ian Stokes , bruce.richardson@intel.com Subject: [PATCH v3 102/129] net/ice/base: add missing files for shared code update Date: Tue, 25 Jun 2024 12:13:47 +0100 Message-ID: <6c1672cdfba6db65bcf02f2adcebcaf4a9757733.1719313663.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: References: 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