net/virtio: fix Rx and Tx handler selection for arm32
authorSamuel Gauthier <samuel.gauthier@6wind.com>
Thu, 14 Sep 2017 07:43:13 +0000 (09:43 +0200)
committerOlivier Matz <olivier.matz@6wind.com>
Thu, 14 Dec 2017 12:19:16 +0000 (13:19 +0100)
commitf487fbf500a84727c742fb88cb9720f2422b309d
treec99cd9862c67eff587dba7074cd5d0ee20c9fc4e
parent4ad5b94e0d13771a48cdf395d0c8b26e5f8cbe91
net/virtio: fix Rx and Tx handler selection for arm32

On arm32, we were always selecting the simple handler, but it is only
available if neon is present.

This is due to a typo in the name of the config option.
CONFIG_RTE_ARCH_ARM is for Makefiles. One should use RTE_ARCH_ARM.

Fixes: 2d7c37194ee4 ("net/virtio: add NEON based Rx handler")
Cc: stable@dpdk.org
Signed-off-by: Samuel Gauthier <samuel.gauthier@6wind.com>
drivers/net/virtio/virtio_ethdev.c