From 8461a5bb709020a6c437821b5bb143dca02ce111 Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Tue, 20 Nov 2018 12:02:36 +0000 Subject: [PATCH] ethdev: remove unused deferred device state DEFERRED state replaced by ownership concept and it is no more used as code comment states. ethdev ABI broken on this release use this opportunity to remove DEFERRED state. Signed-off-by: Ferruh Yigit Acked-by: Matan Azrad --- lib/librte_ethdev/rte_ethdev.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h index 8a92d91e3b..1960f3a2dd 100644 --- a/lib/librte_ethdev/rte_ethdev.h +++ b/lib/librte_ethdev/rte_ethdev.h @@ -1306,8 +1306,6 @@ enum rte_eth_dev_state { RTE_ETH_DEV_UNUSED = 0, /** Device is attached when allocated in probing. */ RTE_ETH_DEV_ATTACHED, - /** The deferred state is useless and replaced by ownership. */ - RTE_ETH_DEV_DEFERRED, /** Device is in removed state when plug-out is detected. */ RTE_ETH_DEV_REMOVED, }; -- 2.20.1