aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Kiss <zoltan.kiss@linaro.org>2015-01-22 18:34:31 +0000
committerZoltan Kiss <zoltan.kiss@linaro.org>2015-01-22 18:34:31 +0000
commitfde196082dfc0d0ed3341bb4c260a0ffb625b7d0 (patch)
treebeee2a7b665bdbd3ae9ca6c44c39f0536bbf94ba
parente8eed6169be337438dbeedb7a45487eb04944faa (diff)
api: odp_debug.h: move macros internallyv0.4.0-dpdk
Porting commit from linux-generic (4440)
-rw-r--r--platform/linux-dpdk/include/api/odp_debug.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/platform/linux-dpdk/include/api/odp_debug.h b/platform/linux-dpdk/include/api/odp_debug.h
index b04f55ea1..835005554 100644
--- a/platform/linux-dpdk/include/api/odp_debug.h
+++ b/platform/linux-dpdk/include/api/odp_debug.h
@@ -21,16 +21,6 @@ extern "C" {
#ifdef __GNUC__
-/**
- * Indicate deprecated variables, functions or types
- */
-#define ODP_DEPRECATED __attribute__((__deprecated__))
-
-/**
- * Intentionally unused variables ot functions
- */
-#define ODP_UNUSED __attribute__((__unused__))
-
#if __GNUC__ < 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ < 6))
/**
@@ -42,11 +32,6 @@ extern "C" {
#endif
-#else
-
-#define ODP_DEPRECATED
-#define ODP_UNUSED
-
#endif
/**