From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yong Wang Subject: Re: [PATCH] vmxnet3: fix spelling Date: Wed, 10 Jun 2015 18:42:40 +0000 Message-ID: References: <1433952577-4321-1-git-send-email-stephen@networkplumber.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: Stephen Hemminger To: Stephen Hemminger , "dev@dpdk.org" Return-path: Received: from smtp-outbound-1.vmware.com (smtp-outbound-1.vmware.com [208.91.2.12]) by dpdk.org (Postfix) with ESMTP id 422C75AA0 for ; Wed, 10 Jun 2015 20:43:20 +0200 (CEST) In-Reply-To: <1433952577-4321-1-git-send-email-stephen@networkplumber.org> Content-Language: en-US Content-ID: <39A263E64DBCCB4D853D676605B28FA1@pa-exch1.vmware.com> 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" On 6/10/15, 9:09 AM, "Stephen Hemminger" wrote: >From: Stephen Hemminger > >Fix spelling errors in strings and comments. > >Signed-off-by: Stephen Hemminger Acked-by: Yong Wang >--- > drivers/net/vmxnet3/vmxnet3_ethdev.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > >diff --git a/drivers/net/vmxnet3/vmxnet3_ethdev.c >b/drivers/net/vmxnet3/vmxnet3_ethdev.c >index 1685ce4..decd9cf 100644 >--- a/drivers/net/vmxnet3/vmxnet3_ethdev.c >+++ b/drivers/net/vmxnet3/vmxnet3_ethdev.c >@@ -194,7 +194,7 @@ eth_vmxnet3_dev_init(struct rte_eth_dev *eth_dev) > pci_dev =3D eth_dev->pci_dev; >=20 > /* >- * for secondary processes, we don't initialise any further as primary >+ * for secondary processes, we don't initialize any further as primary > * has already done this work. > */ > if (rte_eal_process_type() !=3D RTE_PROC_PRIMARY) >@@ -213,21 +213,21 @@ eth_vmxnet3_dev_init(struct rte_eth_dev *eth_dev) >=20 > /* Check h/w version compatibility with driver. */ > ver =3D VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_VRRS); >- PMD_INIT_LOG(DEBUG, "Harware version : %d", ver); >+ PMD_INIT_LOG(DEBUG, "Hardware version : %d", ver); > if (ver & 0x1) > VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_VRRS, 1); > else { >- PMD_INIT_LOG(ERR, "Uncompatiable h/w version, should be 0x1"); >+ PMD_INIT_LOG(ERR, "Incompatible h/w version, should be 0x1"); > return -EIO; > } >=20 > /* Check UPT version compatibility with driver. */ > ver =3D VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_UVRS); >- PMD_INIT_LOG(DEBUG, "UPT harware version : %d", ver); >+ PMD_INIT_LOG(DEBUG, "UPT hardware version : %d", ver); > if (ver & 0x1) > VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_UVRS, 1); > else { >- PMD_INIT_LOG(ERR, "Incompatiable UPT version."); >+ PMD_INIT_LOG(ERR, "Incompatible UPT version."); > return -EIO; > } >=20 >--=20 >2.1.4 >