From: Bruce Richardson Date: Tue, 23 Jul 2019 16:26:48 +0000 (+0100) Subject: raw/ioat: fix include quotes X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e53efcb5481782d23dd84b0cf83708b121481e43;p=dpdk.git raw/ioat: fix include quotes Some builds with clang report an error because '<>' rather than '""' were used for including the ioat spec header file. Target: x86_64-native-bsdapp-clang error: 'rte_ioat_spec.h' file not found with include; use "quotes" instead #include ^~~~~~~~~~~~~~~~~ "rte_ioat_spec.h" 1 error generated. Since this file should always be in the same directory as the main header, we can safely change the include line to fix this error. Fixes: abff4333ec20 ("raw/ioat: create device on probe and destroy on release") Signed-off-by: Bruce Richardson --- diff --git a/drivers/raw/ioat/rte_ioat_rawdev.h b/drivers/raw/ioat/rte_ioat_rawdev.h index 7a89632e77..4b271f1744 100644 --- a/drivers/raw/ioat/rte_ioat_rawdev.h +++ b/drivers/raw/ioat/rte_ioat_rawdev.h @@ -19,7 +19,7 @@ #include #include #include -#include +#include "rte_ioat_spec.h" /** Name of the device driver */ #define IOAT_PMD_RAWDEV_NAME rawdev_ioat