aboutsummaryrefslogtreecommitdiff
path: root/helper
diff options
context:
space:
mode:
authorMaxim Uvarov <maxim.uvarov@linaro.org>2015-12-01 16:27:32 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-12-03 17:59:51 +0300
commitfee69bfd04e49729a54158d838a3d9f754cb52ee (patch)
tree187d9abc0e3474475965cc379f552e15f82255b3 /helper
parent28a6ef9c0b4b4cce3e72fc27dbe3040683215b80 (diff)
helper: unbind hash from platform strong types
Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> Tested-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Diffstat (limited to 'helper')
-rw-r--r--helper/include/odp/helper/table.h5
-rw-r--r--helper/odph_hashtable.h2
-rw-r--r--helper/odph_lineartable.h1
3 files changed, 4 insertions, 4 deletions
diff --git a/helper/include/odp/helper/table.h b/helper/include/odp/helper/table.h
index 50a6a8403..d78801051 100644
--- a/helper/include/odp/helper/table.h
+++ b/helper/include/odp/helper/table.h
@@ -80,14 +80,17 @@
extern "C" {
#endif
+#include <stdint.h>
+
/**
* @def ODPH_TABLE_NAME_LEN
* Max length of table name
*/
#define ODPH_TABLE_NAME_LEN 32
+#include <odp/helper/strong_types.h>
/** ODP table handle */
-typedef ODP_HANDLE_T(odph_table_t);
+typedef ODPH_HANDLE_T(odph_table_t);
/**
* create a table
diff --git a/helper/odph_hashtable.h b/helper/odph_hashtable.h
index 7c203700b..bb75cb9fa 100644
--- a/helper/odph_hashtable.h
+++ b/helper/odph_hashtable.h
@@ -13,8 +13,6 @@
#ifndef ODPH_HASH_TABLE_H_
#define ODPH_HASH_TABLE_H_
-#include <stdint.h>
-#include <odp/plat/strong_types.h>
#include <odp/helper/table.h>
#ifdef __cplusplus
diff --git a/helper/odph_lineartable.h b/helper/odph_lineartable.h
index a53c68b3c..0b56b7fab 100644
--- a/helper/odph_lineartable.h
+++ b/helper/odph_lineartable.h
@@ -14,7 +14,6 @@
#define ODPH_LINEAR_TABLE_H_
#include <stdint.h>
-#include <odp/plat/strong_types.h>
#include <odp/helper/table.h>
#ifdef __cplusplus