From 71ee0b90289a90218fa510908362392a393531b0 Mon Sep 17 00:00:00 2001 From: Muhammad Bilal Date: Tue, 23 Jun 2020 18:26:02 +0500 Subject: [PATCH] bus/vdev: fix a typo in doxygen comment While uninitalizing the driver, the comment was mentioning initialized instead of uninitalized in description of parameter. Fixes: 0fe11ec592b2 ("eal: add vdev init and uninit") Cc: stable@dpdk.org Signed-off-by: Muhammad Bilal --- drivers/bus/vdev/rte_bus_vdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bus/vdev/rte_bus_vdev.h b/drivers/bus/vdev/rte_bus_vdev.h index 2bc46530c9..78a032cea8 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 */ -- 2.20.1