From patchwork Fri Feb 26 18:33:54 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rami Rosen X-Patchwork-Id: 10903 X-Patchwork-Delegate: bruce.richardson@intel.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 75119685E; Fri, 26 Feb 2016 19:32:52 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id F25CF685C for ; Fri, 26 Feb 2016 19:32:50 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP; 26 Feb 2016 10:32:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,498,1449561600"; d="scan'208";a="55432814" Received: from imail001.iil.intel.com ([10.184.207.12]) by fmsmga004.fm.intel.com with ESMTP; 26 Feb 2016 10:32:48 -0800 Received: from rr.iil.intel.com (rr.iil.intel.com [143.185.141.68]) by imail001.iil.intel.com with ESMTP id u1QIWk67028768; Fri, 26 Feb 2016 20:32:46 +0200 From: Rami Rosen To: helin.zhang@intel.com Date: Fri, 26 Feb 2016 20:33:54 +0200 Message-Id: <1456511634-7983-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 1.9.3 Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH] i40e: Fix a typo. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch fixes a typo in a comment in the definition of the i40e_pf struct. Signed-off-by: Rami Rosen Acked-by: Helin Zhang --- drivers/net/i40e/i40e_ethdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/i40e/i40e_ethdev.h b/drivers/net/i40e/i40e_ethdev.h index 6edd7dd..8ebac9d 100644 --- a/drivers/net/i40e/i40e_ethdev.h +++ b/drivers/net/i40e/i40e_ethdev.h @@ -408,7 +408,7 @@ struct i40e_pf { struct rte_eth_dev_data *dev_data; /* Pointer to the device data */ struct ether_addr dev_addr; /* PF device mac address */ - uint64_t flags; /* PF featuer flags */ + uint64_t flags; /* PF feature flags */ /* All kinds of queue pair setting for different VSIs */ struct i40e_pf_vf *vfs; uint16_t vf_num;