[v2] removing typing error of word 'through' in multiple places

Message ID 20200515165054.26973-1-m.bilal@emumba.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series [v2] removing typing error of word 'through' in multiple places |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-nxp-Performance success Performance Testing PASS
ci/travis-robot success Travis build: passed
ci/Intel-compilation success Compilation OK
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-testing fail Testing issues

Commit Message

Muhammad Bilal May 15, 2020, 4:50 p.m. UTC
  Removed the typing error in doc/guides/eventdevs/index.rst,
drivers/net/mlx5/mlx5.c and in lib/librte_vhost/rte_vhost.h

Cc: dev@dpdk.org
Cc: stable@dpdk.org
Cc: jerinj@marvell.com
Cc: matan@mellanox.com
Cc: shahafs@mellanox.com
Cc: maxime.coquelin@redhat.com
Cc: xiaolong.ye@intel.com
Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>
---
 doc/guides/eventdevs/index.rst | 2 +-
 drivers/net/mlx5/mlx5.c        | 2 +-
 lib/librte_vhost/rte_vhost.h   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
  

Comments

Thomas Monjalon May 19, 2020, 1:50 p.m. UTC | #1
15/05/2020 18:50, Muhammad Bilal:
> Removed the typing error in doc/guides/eventdevs/index.rst,
> drivers/net/mlx5/mlx5.c and in lib/librte_vhost/rte_vhost.h
> 
> Cc: dev@dpdk.org
> Cc: stable@dpdk.org
> Cc: jerinj@marvell.com
> Cc: matan@mellanox.com
> Cc: shahafs@mellanox.com
> Cc: maxime.coquelin@redhat.com
> Cc: xiaolong.ye@intel.com
> Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>

Fixes: 0857b9421138 ("doc: add event device and software eventdev")
Fixes: 039253166a57 ("vhost: add device op when notification to guest is sent")
Fixes: ad74bc619504 ("net/mlx5: support multiport IB device during probing")
Cc: stable@dpdk.org

Applied, thanks
  

Patch

diff --git a/doc/guides/eventdevs/index.rst b/doc/guides/eventdevs/index.rst
index 570905b81..bb66a5eac 100644
--- a/doc/guides/eventdevs/index.rst
+++ b/doc/guides/eventdevs/index.rst
@@ -5,7 +5,7 @@  Event Device Drivers
 ====================
 
 The following are a list of event device PMDs, which can be used from an
-application trough the eventdev API.
+application through the eventdev API.
 
 .. toctree::
     :maxdepth: 2
diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c
index 4f704cbef..264f4928a 100644
--- a/drivers/net/mlx5/mlx5.c
+++ b/drivers/net/mlx5/mlx5.c
@@ -3382,7 +3382,7 @@  mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
 		/*
 		 * Single IB device with multiple ports found,
 		 * it may be E-Switch master device and representors.
-		 * We have to perform identification trough the ports.
+		 * We have to perform identification through the ports.
 		 */
 		MLX5_ASSERT(nl_rdma >= 0);
 		MLX5_ASSERT(ns == 0);
diff --git a/lib/librte_vhost/rte_vhost.h b/lib/librte_vhost/rte_vhost.h
index 5c72fba79..d43669f2c 100644
--- a/lib/librte_vhost/rte_vhost.h
+++ b/lib/librte_vhost/rte_vhost.h
@@ -259,7 +259,7 @@  struct vhost_device_ops {
 
 	/**
 	 * This callback gets called each time a guest gets notified
-	 * about waiting packets. This is the interrupt handling trough
+	 * about waiting packets. This is the interrupt handling through
 	 * the eventfd_write(callfd), which can be used for counting these
 	 * "slow" syscalls.
 	 */