aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/odp_event.c
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2022-09-23 13:15:58 +0300
committerMatias Elo <matias.elo@nokia.com>2022-10-07 14:12:02 +0300
commit32a630e3898a0306f78b3b6430663873a93de4b5 (patch)
treedb9f83e0098e1417dfc1946661e667540ad016b4 /platform/linux-generic/odp_event.c
parent96e86e6f9a9fe9a63f2609c28af6e41ddbf1a9d9 (diff)
linux-gen: debug: prefix implementation internal debug macros
Prefix implementation internal debug macro names with underscore. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'platform/linux-generic/odp_event.c')
-rw-r--r--platform/linux-generic/odp_event.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linux-generic/odp_event.c b/platform/linux-generic/odp_event.c
index 5a1f68621..c4e0f2c9d 100644
--- a/platform/linux-generic/odp_event.c
+++ b/platform/linux-generic/odp_event.c
@@ -71,7 +71,7 @@ void odp_event_free(odp_event_t event)
odp_dma_compl_free(odp_dma_compl_from_event(event));
break;
default:
- ODP_ABORT("Invalid event type: %d\n", odp_event_type(event));
+ _ODP_ABORT("Invalid event type: %d\n", odp_event_type(event));
}
}