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 67C4C45895; Thu, 29 Aug 2024 11:01:27 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ABFEC42DBD; Thu, 29 Aug 2024 11:00:41 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.17]) by mails.dpdk.org (Postfix) with ESMTP id A038842D83 for ; Thu, 29 Aug 2024 11:00:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1724922038; x=1756458038; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=elTItQ3FqND+tg7/tDLA3e9HXTST0GEjmbmDswdsc00=; b=Ntn6C5FDf38DV50fqp5GME1JNV/zMp1FSBFBdYVGQNiYL5GQ3OG7ghcC ZTRyNa0Vx7QRMfkdKg35pG0euh5PbFwL6pSWw0RlrYIyErB3nM8dYSLve vwwUfCXM8yRAnngMXJVPBKQeEGZoQlWcUocd5TCFghOm9hq/m7rOHPJZi IwyZepVdkUnPrLn7vXSDt/nmEsuNEZcivVPmc+GxXGwtvo2seA/qHOgkj 9uPoHCRhqRAaK1BQjN5iunBmwjtGwqywNwBxvwBGw84v0ZjJfeUkmdrXa UjuCtmOThRK70eErvoAVnKbCz5qqQaoUeFk0bll4+e6fyi+1r6+AJ7k3y w==; X-CSE-ConnectionGUID: eAmmaDKMRkaDhipp5a6DtQ== X-CSE-MsgGUID: 0n/mHlplTF6WP7LijG4jrA== X-IronPort-AV: E=McAfee;i="6700,10204,11178"; a="23663465" X-IronPort-AV: E=Sophos;i="6.10,185,1719903600"; d="scan'208";a="23663465" 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:36 -0700 X-CSE-ConnectionGUID: y86LrM/rSD2pKderOITzKA== X-CSE-MsgGUID: DH1gbiqKREGI0LbRDTBllA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.10,185,1719903600"; d="scan'208";a="64202948" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa008.jf.intel.com with ESMTP; 29 Aug 2024 02:00:35 -0700 From: Anatoly Burakov To: dev@dpdk.org Subject: [PATCH v1 09/15] net/ixgbe/base: FW API version update Date: Thu, 29 Aug 2024 10:00:14 +0100 Message-ID: <5d97546f9207c3676908345e6408b72c6c48cf5e.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: Pawel Malinowski Update FW API version to 1.7. Signed-off-by: Pawel Malinowski Signed-off-by: Anatoly Burakov --- drivers/net/ixgbe/base/ixgbe_type_e610.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/ixgbe_type_e610.h b/drivers/net/ixgbe/base/ixgbe_type_e610.h index ab57852f19..bad332c6b8 100644 --- a/drivers/net/ixgbe/base/ixgbe_type_e610.h +++ b/drivers/net/ixgbe/base/ixgbe_type_e610.h @@ -351,7 +351,7 @@ */ #define IXGBE_FW_API_VER_BRANCH 0x00 #define IXGBE_FW_API_VER_MAJOR 0x01 -#define IXGBE_FW_API_VER_MINOR 0x05 +#define IXGBE_FW_API_VER_MINOR 0x07 #define IXGBE_FW_API_VER_DIFF_ALLOWED 0x02 #define IXGBE_ACI_DESC_SIZE 32 -- 2.43.5