From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo de Lara Subject: [PATCH] eal: fix FreeBSD build Date: Thu, 19 Jan 2017 14:21:35 +0000 Message-ID: <1484835695-231973-1-git-send-email-pablo.de.lara.guarch@intel.com> Cc: dev@dpdk.org, Pablo de Lara To: bruce.richardson@intel.com, sergio.gonzalez.monroy@intel.com Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 586BCF969 for ; Thu, 19 Jan 2017 15:19:58 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" rte_bus_scan() and rte_bus_probe() have been introduced in eal.c, but it is missing the rte_bus.h header file, for BSD systems. Fixes: f44abbc12fa0 ("bus: add scanning") Fixes: c3cec1d80708 ("bus: add probing") Signed-off-by: Pablo de Lara --- lib/librte_eal/bsdapp/eal/eal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/bsdapp/eal/eal.c b/lib/librte_eal/bsdapp/eal/eal.c index 534aeea..ee7c9de 100644 --- a/lib/librte_eal/bsdapp/eal/eal.c +++ b/lib/librte_eal/bsdapp/eal/eal.c @@ -64,6 +64,7 @@ #include #include #include +#include #include #include #include -- 2.7.4