From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: [PATCH] net/avp: fix build with non x86 Date: Mon, 3 Apr 2017 19:28:35 +0530 Message-ID: <1491227915-9410-1-git-send-email-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain Cc: ferruh.yigit@intel.com, allain.legacy@windriver.com, Jerin Jacob To: dev@dpdk.org Return-path: Received: from NAM01-BY2-obe.outbound.protection.outlook.com (mail-by2nam01on0040.outbound.protection.outlook.com [104.47.34.40]) by dpdk.org (Postfix) with ESMTP id 1E759271 for ; Mon, 3 Apr 2017 15:59:15 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" sys/io.h is an x86 specific header file and AVP driver is not using any x86 specific IO operation. Hence removing the sys/io.h reference to fix the build issue on non x86 platforms. Fixes: 5567f9689cf8 ("net/avp: support driver registration") Signed-off-by: Jerin Jacob --- drivers/net/avp/avp_ethdev.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/avp/avp_ethdev.c b/drivers/net/avp/avp_ethdev.c index 23a59c1..989152e 100644 --- a/drivers/net/avp/avp_ethdev.c +++ b/drivers/net/avp/avp_ethdev.c @@ -35,7 +35,6 @@ #include #include #include -#include #include #include -- 2.5.5