aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include-abi
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2018-08-09 13:28:48 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-11-28 17:16:38 +0300
commite06d1f6cfb34e13b6a3bc81220f07c1207c04248 (patch)
tree5f4e290334ae50e8e68b16316bacceb59b9f97dc /platform/linux-generic/include-abi
parent97bb0f3801f2f1692a12e24d9aa4fadf0b8ce477 (diff)
api: classifier: rename ODP_PMR_INVAL to ODP_PMR_INVALID
Deprecates ODP_PMR_INVAL. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@linaro.org> Reviewed-by: Balasubramanian Manoharan <bala.manoharan@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/include-abi')
-rw-r--r--platform/linux-generic/include-abi/odp/api/abi/classification.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/platform/linux-generic/include-abi/odp/api/abi/classification.h b/platform/linux-generic/include-abi/odp/api/abi/classification.h
index 92b926cd7..843e15f6c 100644
--- a/platform/linux-generic/include-abi/odp/api/abi/classification.h
+++ b/platform/linux-generic/include-abi/odp/api/abi/classification.h
@@ -18,6 +18,7 @@ extern "C" {
#endif
#include <odp/api/plat/strong_types.h>
+#include <odp/api/deprecated.h>
/** @ingroup odp_classification
* @{
@@ -27,7 +28,15 @@ typedef ODP_HANDLE_T(odp_cos_t);
#define ODP_COS_INVALID _odp_cast_scalar(odp_cos_t, 0)
typedef ODP_HANDLE_T(odp_pmr_t);
-#define ODP_PMR_INVAL _odp_cast_scalar(odp_pmr_t, 0)
+#define ODP_PMR_INVALID _odp_cast_scalar(odp_pmr_t, 0)
+
+#if ODP_DEPRECATED_API
+#define ODP_PMR_INVAL ODP_PMR_INVALID
+#else
+/* Required to prevent Doxygen warning */
+#define ODP_PMR_INVAL
+#undef ODP_PMR_INVAL
+#endif
#define ODP_COS_NAME_LEN 32