From: Thomas Monjalon Date: Fri, 5 Feb 2016 14:38:02 +0000 (+0100) Subject: examples/ethtool: fix build X-Git-Tag: spdx-start~7631 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=71e6e8c51906102ba1f7da0a75f29f9c26b651f0;p=dpdk.git 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: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application") Signed-off-by: Thomas Monjalon Acked-by: Remy Horton --- diff --git a/examples/ethtool/ethtool-app/main.c b/examples/ethtool/ethtool-app/main.c index e21abcd54b..2c655d83e9 100644 --- a/examples/ethtool/ethtool-app/main.c +++ b/examples/ethtool/ethtool-app/main.c @@ -36,7 +36,7 @@ #include #include -#include +#include #include #include #include