aboutsummaryrefslogtreecommitdiff
path: root/helper/lineartable.c
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2019-09-16 15:46:39 +0300
committerPetri Savolainen <petri.savolainen@nokia.com>2019-09-19 15:49:24 +0300
commit9585df1b0fc62cdb645f1faeeb05fbe1a365197d (patch)
treedf5e27007711092504118083b73d25bc86d4d6fa /helper/lineartable.c
parentbc6bf0a4ff3c7b5f1a0709fcf6451683958a124b (diff)
helper: debug: remove duplicate ODPH_UNUSED macro
ODP API already has ODP_UNUSED macro. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'helper/lineartable.c')
-rw-r--r--helper/lineartable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/helper/lineartable.c b/helper/lineartable.c
index 8479d2f1a..864c7973f 100644
--- a/helper/lineartable.c
+++ b/helper/lineartable.c
@@ -43,7 +43,7 @@ typedef struct {
*/
odph_table_t odph_linear_table_create(const char *name, uint32_t capacity,
- uint32_t un ODPH_UNUSED,
+ uint32_t un ODP_UNUSED,
uint32_t value_size)
{
uint32_t idx;
@@ -181,7 +181,7 @@ static int odph_lineartable_put_value(odph_table_t table,
/* should make sure the input table exists and is available */
static int odph_lineartable_get_value(odph_table_t table,
void *key, void *buffer,
- uint32_t buffer_size ODPH_UNUSED)
+ uint32_t buffer_size ODP_UNUSED)
{
odph_linear_table_imp *tbl;
uint32_t ikey = 0;