From: Muhammad Bilal Date: Tue, 23 Jun 2020 13:26:02 +0000 (+0500) Subject: bus/vdev: fix a typo in doxygen comment X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=71ee0b90289a90218fa510908362392a393531b0;p=dpdk.git 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 --- 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 */