From 2ee926f1fd00ff3565ac7bf05957e36b8be5aa61 Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Thu, 19 Jan 2017 14:21:35 +0000 Subject: [PATCH] eal: fix FreeBSD build 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 534aeeab7a..ee7c9de748 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.20.1