From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] nfp: fix non-x86 build Date: Sat, 6 Feb 2016 22:51:16 +0100 Message-ID: <1454795476-25542-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org To: alejandro.lucero@netronome.com Return-path: Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id E7E0A3237 for ; Sat, 6 Feb 2016 22:52:48 +0100 (CET) Received: by mail-wm0-f47.google.com with SMTP id g62so89507908wme.0 for ; Sat, 06 Feb 2016 13:52:48 -0800 (PST) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The file sys/io.h was included but it can be unavailable in some non-x86 toolchains. As others system includes in the file nfp_net.c, it seems useless, so the easy fix is to remove them. Signed-off-by: Thomas Monjalon --- drivers/net/nfp/nfp_net.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/drivers/net/nfp/nfp_net.c b/drivers/net/nfp/nfp_net.c index bc2089f..283269e 100644 --- a/drivers/net/nfp/nfp_net.c +++ b/drivers/net/nfp/nfp_net.c @@ -39,18 +39,7 @@ * Netronome vNIC DPDK Poll-Mode Driver: Main entry point */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include -#include #include #include -- 2.7.0