From: David Marchand Date: Wed, 29 May 2019 11:29:14 +0000 (+0200) Subject: test/table: remove duplicate macro X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=fd1a85cb53a0500478aeed95c35938b53fac60d5;p=dpdk.git test/table: remove duplicate macro No need for this macro here, take it from librte_net. Fixes: 24ac604ef746 ("net: add rte prefix to IP defines") Signed-off-by: David Marchand Reviewed-by: Olivier Matz --- diff --git a/app/test/test_table_acl.c b/app/test/test_table_acl.c index e01e1f946c..cb039c0945 100644 --- a/app/test/test_table_acl.c +++ b/app/test/test_table_acl.c @@ -2,16 +2,12 @@ * Copyright(c) 2010-2014 Intel Corporation */ +#include #include #include #include "test_table.h" #include "test_table_acl.h" -#define RTE_IPv4(a, b, c, d) ((uint32_t)(((a) & 0xff) << 24) | \ - (((b) & 0xff) << 16) | \ - (((c) & 0xff) << 8) | \ - ((d) & 0xff)) - /* * Rule and trace formats definitions. **/