@@ -24,6 +24,7 @@ extern C {
#include <odp/drv/byteorder.h>
#include <odp/drv/compiler.h>
#include <odp/drv/driver.h>
+#include <odp/drv/hints.h>
#include <odp/drv/shm.h>
#include <odp/drv/spinlock.h>
#include <odp/drv/std_types.h>
new file mode 100644
@@ -0,0 +1,34 @@
+/* Copyright (c) 2017, Linaro Limited
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * @file
+ *
+ * ODPDRV compiler hints
+ */
+
+#ifndef ODPDRV_PLAT_HINTS_H_
+#define ODPDRV_PLAT_HINTS_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/** @ingroup odpdrv_compiler_optim
+ * @{
+ */
+
+/**
+ * @}
+ */
+
+#include <odp/drv/spec/hints.h>
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
Just including the spec file from the linux-generic side, as usual. Signed-off-by: Christophe Milard <christophe.milard@linaro.org> --- include/odp_drv.h | 1 + platform/linux-generic/include/odp/drv/hints.h | 34 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 platform/linux-generic/include/odp/drv/hints.h -- 2.7.4