examples/ethtool: fix build

When building for ARM, the spinlock structure was not found.
It appears to be a mismatch with rwlock which is not used in this file.

Fixes: bda68ab9d1 ("examples/ethtool: add user-space ethtool sample application")

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Remy Horton <remy.horton@intel.com>
This commit is contained in:
Thomas Monjalon 2016-02-05 15:38:02 +01:00
parent 28377375c6
commit 71e6e8c519

View File

@ -36,7 +36,7 @@
#include <stdlib.h>
#include <rte_common.h>
#include <rte_rwlock.h>
#include <rte_spinlock.h>
#include <rte_eal.h>
#include <rte_ethdev.h>
#include <rte_ether.h>