From: Pablo de Lara Date: Thu, 19 Jan 2017 14:21:35 +0000 (+0000) Subject: eal: fix FreeBSD build X-Git-Tag: spdx-start~4684 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2ee926f1fd00ff3565ac7bf05957e36b8be5aa61;p=dpdk.git 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 --- 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