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 D623745895; Thu, 29 Aug 2024 11:00:57 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9CAA142D2E; Thu, 29 Aug 2024 11:00:36 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.17]) by mails.dpdk.org (Postfix) with ESMTP id 8B43242D68 for ; Thu, 29 Aug 2024 11:00:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1724922033; x=1756458033; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=Xci9AXvE1CROmA21TK3HUvnZwGJUkJTtevf+uRMZs6I=; b=Bm316WLdoANAzeO4MgMPnUYFSYlw+r7A8Gv6Ip1eT7uhqYboJJ8Q9Ubm jmsUlo6cVI5dsXwjg+HukI1OWyobDYEjRMHAy8KIdrMoc7tStK/l+7CIm panH6VFUqGzsda4ZGt+dgaY1CgRgkRS9xXDTtgmRuR5vuV1Az3WNw0oPK HMnorBtASx2OgHAGqm1+JpYFOXlQZrJgk/9ejQ9vEaQbOrwm0EoCb3cP5 nuGDA7D7mlxmphxnxgPGM2i9P3yRdGIBnCF2EUy762FuN2TQ5OVbL2qwX wJtD0HF3/po1jfYYocISB1R9kcrD1GbtB6QlXazWosjzXswpQI8uHaZmr w==; X-CSE-ConnectionGUID: 1TgwhzfCQw+V3PaztnmXsg== X-CSE-MsgGUID: lBq+mWQCTve1sM2VfRkIpQ== X-IronPort-AV: E=McAfee;i="6700,10204,11178"; a="23663432" X-IronPort-AV: E=Sophos;i="6.10,185,1719903600"; d="scan'208";a="23663432" Received: from orviesa008.jf.intel.com ([10.64.159.148]) by orvoesa109.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Aug 2024 02:00:32 -0700 X-CSE-ConnectionGUID: 8iomCnPQRYaXw9tOepN09w== X-CSE-MsgGUID: VZaH991+TQOTUNL/J4mPVg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.10,185,1719903600"; d="scan'208";a="64202944" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa008.jf.intel.com with ESMTP; 29 Aug 2024 02:00:31 -0700 From: Anatoly Burakov To: dev@dpdk.org Subject: [PATCH v1 05/15] net/ixgbe/base: add E610 VF HV macro Date: Thu, 29 Aug 2024 10:00:10 +0100 Message-ID: <9b95cd0223a50fc5f9cb60c04b043ba38e084b06.1724921977.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 2.43.5 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: Jedrzej Jagielski At this point there is no macro specific for E610 VF HV. Add it to ixgbe_type.h Signed-off-by: Jedrzej Jagielski Signed-off-by: Anatoly Burakov --- drivers/net/ixgbe/base/ixgbe_type.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ixgbe/base/ixgbe_type.h b/drivers/net/ixgbe/base/ixgbe_type.h index f6d5052c65..cc49eace91 100644 --- a/drivers/net/ixgbe/base/ixgbe_type.h +++ b/drivers/net/ixgbe/base/ixgbe_type.h @@ -131,6 +131,7 @@ #define IXGBE_DEV_ID_E610_2_5G_T 0x57B1 #define IXGBE_DEV_ID_E610_SGMII 0x57B2 #define IXGBE_DEV_ID_E610_VF 0x57AD +#define IXGBE_SUBDEV_ID_E610_VF_HV 0x0001 #define IXGBE_CAT(r, m) IXGBE_##r##m -- 2.43.5