ethdev: fix a typo in global API introduction
authorNikhil Rao <nikhil.rao@intel.com>
Mon, 1 Aug 2016 05:49:48 +0000 (11:19 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 2 Jul 2017 17:46:52 +0000 (19:46 +0200)
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 <nikhil.rao@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
lib/librte_ether/rte_ethdev.h

index dfcbc8c..1446540 100644 (file)
  *     - 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.