From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rami Rosen Subject: [PATCH] examples/l3fwd: remove redudant include. Date: Mon, 2 Jul 2018 20:55:23 +0300 Message-ID: <1530554123-10261-1-git-send-email-rami.rosen@intel.com> Cc: rkerur@gmail.com, Rami Rosen To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id F16861B532 for ; Mon, 2 Jul 2018 19:57:47 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch removes unneeded include of rte_mempool.h in two modules in examples/l3fwd. Fixes: 268888b5b020 ("examples/l3fwd: modularize") Signed-off-by: Rami Rosen --- examples/l3fwd/l3fwd_em.c | 1 - examples/l3fwd/l3fwd_lpm.c | 1 - 2 files changed, 2 deletions(-) diff --git a/examples/l3fwd/l3fwd_em.c b/examples/l3fwd/l3fwd_em.c index 9dc3b8c..fa8f82b 100644 --- a/examples/l3fwd/l3fwd_em.c +++ b/examples/l3fwd/l3fwd_em.c @@ -18,7 +18,6 @@ #include #include #include -#include #include #include #include diff --git a/examples/l3fwd/l3fwd_lpm.c b/examples/l3fwd/l3fwd_lpm.c index a747126..b1dc195 100644 --- a/examples/l3fwd/l3fwd_lpm.c +++ b/examples/l3fwd/l3fwd_lpm.c @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #include -- 1.9.1