aboutsummaryrefslogtreecommitdiff
path: root/helper
diff options
context:
space:
mode:
authorTaras Kondratiuk <taras.kondratiuk@linaro.org>2014-12-23 11:55:16 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-01-29 20:42:32 +0300
commitc1b9f1d9fca5904f1eae8416a863bf151d53b523 (patch)
treedf3085826491d4d76dad611f54d4155d998f87a1 /helper
parentffdb4d728a4ca0d4861e8d487e5efdb6e2a6eedb (diff)
api: move ODP headers to a directory
Signed-off-by: Taras Kondratiuk <taras.kondratiuk@linaro.org> Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Reviewed-by: Balasubramanian Manoharan <bala.manoharan@linaro.org> Reviewed-by: Taras Kondratiuk <taras.kondratiuk@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'helper')
-rw-r--r--helper/include/odph_chksum.h2
-rw-r--r--helper/include/odph_eth.h8
-rw-r--r--helper/include/odph_icmp.h6
-rw-r--r--helper/include/odph_ip.h6
-rw-r--r--helper/include/odph_ipsec.h8
-rw-r--r--helper/include/odph_ring.h6
-rw-r--r--helper/include/odph_tcp.h6
-rw-r--r--helper/include/odph_udp.h6
8 files changed, 24 insertions, 24 deletions
diff --git a/helper/include/odph_chksum.h b/helper/include/odph_chksum.h
index 710711a..edb1c98 100644
--- a/helper/include/odph_chksum.h
+++ b/helper/include/odph_chksum.h
@@ -17,7 +17,7 @@
extern "C" {
#endif
-#include <odp_std_types.h>
+#include <odp/std_types.h>
/**
* Checksum
diff --git a/helper/include/odph_eth.h b/helper/include/odph_eth.h
index 6a29b76..c93fe3e 100644
--- a/helper/include/odph_eth.h
+++ b/helper/include/odph_eth.h
@@ -18,10 +18,10 @@
extern "C" {
#endif
-#include <odp_std_types.h>
-#include <odp_byteorder.h>
-#include <odp_align.h>
-#include <odp_debug.h>
+#include <odp/std_types.h>
+#include <odp/byteorder.h>
+#include <odp/align.h>
+#include <odp/debug.h>
#define ODPH_ETHADDR_LEN 6 /**< Ethernet address length */
#define ODPH_ETHHDR_LEN 14 /**< Ethernet header length */
diff --git a/helper/include/odph_icmp.h b/helper/include/odph_icmp.h
index bc97008..f6adc70 100644
--- a/helper/include/odph_icmp.h
+++ b/helper/include/odph_icmp.h
@@ -18,9 +18,9 @@
extern "C" {
#endif
-#include <odp_align.h>
-#include <odp_debug.h>
-#include <odp_byteorder.h>
+#include <odp/align.h>
+#include <odp/debug.h>
+#include <odp/byteorder.h>
/** ICMP header length */
#define ODPH_ICMPHDR_LEN 8
diff --git a/helper/include/odph_ip.h b/helper/include/odph_ip.h
index f7711d5..34c8a07 100644
--- a/helper/include/odph_ip.h
+++ b/helper/include/odph_ip.h
@@ -18,9 +18,9 @@
extern "C" {
#endif
-#include <odp_align.h>
-#include <odp_debug.h>
-#include <odp_byteorder.h>
+#include <odp/align.h>
+#include <odp/debug.h>
+#include <odp/byteorder.h>
#include <odph_chksum.h>
#include <string.h>
diff --git a/helper/include/odph_ipsec.h b/helper/include/odph_ipsec.h
index fd72bc6..70c6b9c 100644
--- a/helper/include/odph_ipsec.h
+++ b/helper/include/odph_ipsec.h
@@ -18,10 +18,10 @@
extern "C" {
#endif
-#include <odp_std_types.h>
-#include <odp_byteorder.h>
-#include <odp_align.h>
-#include <odp_debug.h>
+#include <odp/std_types.h>
+#include <odp/byteorder.h>
+#include <odp/align.h>
+#include <odp/debug.h>
#define ODPH_ESPHDR_LEN 8 /**< IPSec ESP header length */
#define ODPH_ESPTRL_LEN 2 /**< IPSec ESP trailer length */
diff --git a/helper/include/odph_ring.h b/helper/include/odph_ring.h
index 76c1db8..65c32ad 100644
--- a/helper/include/odph_ring.h
+++ b/helper/include/odph_ring.h
@@ -97,9 +97,9 @@ extern "C" {
#endif
-#include <odp_std_types.h>
-#include <odp_hints.h>
-#include <odp_atomic.h>
+#include <odp/std_types.h>
+#include <odp/hints.h>
+#include <odp/atomic.h>
#include <errno.h>
#include <sys/queue.h>
diff --git a/helper/include/odph_tcp.h b/helper/include/odph_tcp.h
index 3992ecf..0d9ec18 100644
--- a/helper/include/odph_tcp.h
+++ b/helper/include/odph_tcp.h
@@ -18,9 +18,9 @@
extern "C" {
#endif
-#include <odp_align.h>
-#include <odp_debug.h>
-#include <odp_byteorder.h>
+#include <odp/align.h>
+#include <odp/debug.h>
+#include <odp/byteorder.h>
/** TCP header */
typedef struct ODP_PACKED {
diff --git a/helper/include/odph_udp.h b/helper/include/odph_udp.h
index e77edff..99a96f2 100644
--- a/helper/include/odph_udp.h
+++ b/helper/include/odph_udp.h
@@ -18,9 +18,9 @@
extern "C" {
#endif
-#include <odp_align.h>
-#include <odp_debug.h>
-#include <odp_byteorder.h>
+#include <odp/align.h>
+#include <odp/debug.h>
+#include <odp/byteorder.h>
/** UDP header length */
#define ODPH_UDPHDR_LEN 8