From: Nikhil Rao Date: Mon, 1 Aug 2016 05:49:48 +0000 (+0530) Subject: ethdev: fix a typo in global API introduction X-Git-Tag: spdx-start~2916 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5142318c8110d3bd697bf2217cfb653ebd11a0c2;p=dpdk.git ethdev: fix a typo in global API introduction This patch fixes a typo in the eth device API doc, device config. not stored between calls to rte_eth_dev_start/stop() should be restored before a call to rte_eth_dev_start() instead of after a call to rte_eth_dev_start(). Signed-off-by: Nikhil Rao Acked-by: John McNamara --- diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index dfcbc8cc4d..14465402f5 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -118,7 +118,7 @@ * - NIC queue statistics mappings * * Any other configuration will not be stored and will need to be re-entered - * after a call to rte_eth_dev_start(). + * before a call to rte_eth_dev_start(). * * Finally, a network application can close an Ethernet device by invoking the * rte_eth_dev_close() function.