From aa6a021db7b788ca17858fe1c011b96355219dbb Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Wed, 6 Jul 2016 15:05:32 +0100 Subject: [PATCH] cryptodev: move KASUMI to end of list New cryptodev type for the new KASUMI PMD was added in the cryptodev type enum, but not at the end of it, causing an ABI breakage. Fixes: 2773c86d061a ("crypto/kasumi: add driver for KASUMI library") Reported-by: Ferruh Yigit Signed-off-by: Pablo de Lara --- lib/librte_cryptodev/rte_cryptodev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_cryptodev/rte_cryptodev.h b/lib/librte_cryptodev/rte_cryptodev.h index 4c023077cc..affbdecc89 100644 --- a/lib/librte_cryptodev/rte_cryptodev.h +++ b/lib/librte_cryptodev/rte_cryptodev.h @@ -67,9 +67,9 @@ enum rte_cryptodev_type { RTE_CRYPTODEV_NULL_PMD = 1, /**< Null crypto PMD */ RTE_CRYPTODEV_AESNI_GCM_PMD, /**< AES-NI GCM PMD */ RTE_CRYPTODEV_AESNI_MB_PMD, /**< AES-NI multi buffer PMD */ - RTE_CRYPTODEV_KASUMI_PMD, /**< KASUMI PMD */ RTE_CRYPTODEV_QAT_SYM_PMD, /**< QAT PMD Symmetric Crypto */ RTE_CRYPTODEV_SNOW3G_PMD, /**< SNOW 3G PMD */ + RTE_CRYPTODEV_KASUMI_PMD, /**< KASUMI PMD */ }; extern const char **rte_cyptodev_names; -- 2.20.1