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....@intel.com Signed-off-by: Muhammad Bilal <m.bi...@emumba.com> --- 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 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 */ -- 2.25.1