From: Bruce Richardson Date: Tue, 20 Jun 2017 15:23:08 +0000 (+0100) Subject: net/enic: replace check for SSE4 with check for x86 X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=50f0b41f237fb98f1185651a86f7cc6545f32213 net/enic: replace check for SSE4 with check for x86 Since SSE4 is now minimum requirement for x86 platforms we can replace the check for SSE4 with a check for x86 Signed-off-by: Bruce Richardson Acked-by: Konstantin Ananyev --- diff --git a/drivers/net/enic/enic_clsf.c b/drivers/net/enic/enic_clsf.c index 9e94afdf94..9b461424b3 100644 --- a/drivers/net/enic/enic_clsf.c +++ b/drivers/net/enic/enic_clsf.c @@ -57,7 +57,7 @@ #include "vnic_intr.h" #include "vnic_nic.h" -#ifdef RTE_MACHINE_CPUFLAG_SSE4_2 +#ifdef RTE_ARCH_X86 #include #define DEFAULT_HASH_FUNC rte_hash_crc #else