drivers/bus/vdev: corrected a typing error in header file

Message ID 20200623132602.559674-1-m.bilal@emumba.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series drivers/bus/vdev: corrected a typing error in header file |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-broadcom-Performance success Performance Testing PASS
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 success Testing PASS

Commit Message

Muhammad Bilal June 23, 2020, 1:26 p.m. UTC
  Here I have corrected a potential typing mistake in header file.
while Uninitalizing the driver the comment was mentioning 
initializing instead of Uninitalizing in despription of parameter

Fixes: d4a586d29e65 ("bus/vdev: move code from EAL into a new driver")
Cc: jianfeng.tan@intel.com

Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>
---
 drivers/bus/vdev/rte_bus_vdev.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Thomas Monjalon July 22, 2020, 12:21 a.m. UTC | #1
23/06/2020 15:26, Muhammad Bilal:
> Here I have corrected a potential typing mistake in header file.
> while Uninitalizing the driver the comment was mentioning 
> initializing instead of Uninitalizing in despription of parameter
> 
> Fixes: d4a586d29e65 ("bus/vdev: move code from EAL into a new driver")
> Cc: jianfeng.tan@intel.com

It should be:

Fixes: 0fe11ec592b2 ("eal: add vdev init and uninit")
Cc: mukawa@igel.co.jp
Cc: stable@dpdk.org

> Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>

Applied with above change
  

Patch

diff --git a/drivers/bus/vdev/rte_bus_vdev.h b/drivers/bus/vdev/rte_bus_vdev.h
index 2bc46530c..78a032cea 100644
--- a/drivers/bus/vdev/rte_bus_vdev.h
+++ b/drivers/bus/vdev/rte_bus_vdev.h
@@ -155,7 +155,7 @@  int rte_vdev_init(const char *name, const char *args);
  * Uninitalize a driver specified by name.
  *
  * @param name
- *   The pointer to a driver name to be initialized.
+ *   The pointer to a driver name to be uninitialized.
  * @return
  *  0 on success, negative on error
  */