The driver was getting the UDP header definition indirectly via rte_ethdev.h. That will change, so include the header directly.
Signed-off-by: Stephen Hemminger <[email protected]> --- drivers/crypto/dpaa_sec/dpaa_sec.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/crypto/dpaa_sec/dpaa_sec.h b/drivers/crypto/dpaa_sec/dpaa_sec.h index d78cad818a..bce60d9cb8 100644 --- a/drivers/crypto/dpaa_sec/dpaa_sec.h +++ b/drivers/crypto/dpaa_sec/dpaa_sec.h @@ -7,6 +7,8 @@ #ifndef _DPAA_SEC_H_ #define _DPAA_SEC_H_ +#include <rte_udp.h> + #define CRYPTODEV_NAME_DPAA_SEC_PMD crypto_dpaa_sec /**< NXP DPAA - SEC PMD device name */ -- 2.53.0

