aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2024-03-18 13:50:54 +0200
committerMatias Elo <matias.elo@nokia.com>2024-04-26 18:24:19 +0300
commit68b0fad04e95481793a707feef6006c51feca98f (patch)
treeacc62acf37918c621c82d4a7c5837e9e4fbb8461
parenta545c4bd2abb80a845b76cb797084f16b92da580 (diff)
helper: rename debug API header file
Rename odph_debug.h to debug.h to be consistent with other helper API header files. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Jere Leppänen <jere.leppanen@nokia.com>
-rw-r--r--helper/Makefile.am2
-rw-r--r--helper/include/odp/helper/debug.h (renamed from helper/include/odp/helper/odph_debug.h)0
-rw-r--r--helper/include/odp/helper/odph_api.h2
-rw-r--r--helper/ipsec.c2
-rw-r--r--helper/linux/thread.c2
-rw-r--r--helper/threads.c2
-rw-r--r--test/validation/api/buffer/buffer.c2
7 files changed, 6 insertions, 6 deletions
diff --git a/helper/Makefile.am b/helper/Makefile.am
index e16c7202f..a732509df 100644
--- a/helper/Makefile.am
+++ b/helper/Makefile.am
@@ -16,7 +16,7 @@ helperinclude_HEADERS = \
include/odp/helper/autoheader_external.h\
include/odp/helper/deprecated.h\
include/odp/helper/chksum.h\
- include/odp/helper/odph_debug.h \
+ include/odp/helper/debug.h \
include/odp/helper/eth.h\
include/odp/helper/gtp.h\
include/odp/helper/icmp.h\
diff --git a/helper/include/odp/helper/odph_debug.h b/helper/include/odp/helper/debug.h
index 41b425ab2..41b425ab2 100644
--- a/helper/include/odp/helper/odph_debug.h
+++ b/helper/include/odp/helper/debug.h
diff --git a/helper/include/odp/helper/odph_api.h b/helper/include/odp/helper/odph_api.h
index ac93f5cb3..2541efa89 100644
--- a/helper/include/odp/helper/odph_api.h
+++ b/helper/include/odp/helper/odph_api.h
@@ -18,8 +18,8 @@ extern "C" {
#include <odp/helper/autoheader_external.h>
-#include <odp/helper/odph_debug.h>
#include <odp/helper/chksum.h>
+#include <odp/helper/debug.h>
#include <odp/helper/eth.h>
#include <odp/helper/gtp.h>
#include <odp/helper/icmp.h>
diff --git a/helper/ipsec.c b/helper/ipsec.c
index bb7d5d0eb..1589d33bd 100644
--- a/helper/ipsec.c
+++ b/helper/ipsec.c
@@ -4,8 +4,8 @@
* Copyright (c) 2021 Nokia
*/
+#include <odp/helper/debug.h>
#include <odp/helper/ipsec.h>
-#include <odp/helper/odph_debug.h>
uint32_t odph_ipsec_auth_icv_len_default(odp_auth_alg_t auth_alg)
{
diff --git a/helper/linux/thread.c b/helper/linux/thread.c
index d5b016833..ec2847a88 100644
--- a/helper/linux/thread.c
+++ b/helper/linux/thread.c
@@ -18,9 +18,9 @@
#include <stdbool.h>
#include <odp_api.h>
+#include <odp/helper/debug.h>
#include <odp/helper/linux/pthread.h>
#include <odp/helper/linux/process.h>
-#include <odp/helper/odph_debug.h>
static void *_odph_run_start_routine(void *arg)
{
diff --git a/helper/threads.c b/helper/threads.c
index 105debe11..5063725b2 100644
--- a/helper/threads.c
+++ b/helper/threads.c
@@ -21,8 +21,8 @@
#include <inttypes.h>
#include <odp_api.h>
+#include <odp/helper/debug.h>
#include <odp/helper/threads.h>
-#include <odp/helper/odph_debug.h>
#define FAILED_CPU -1
diff --git a/test/validation/api/buffer/buffer.c b/test/validation/api/buffer/buffer.c
index ec2aa45a0..fa82cf552 100644
--- a/test/validation/api/buffer/buffer.c
+++ b/test/validation/api/buffer/buffer.c
@@ -5,7 +5,7 @@
*/
#include <odp_api.h>
-#include <odp/helper/odph_debug.h>
+#include <odp/helper/odph_api.h>
#include "odp_cunit_common.h"
#define BUF_ALIGN ODP_CACHE_LINE_SIZE