[dpdk-dev] net: remove unneeded include in rte_ip.h

Message ID 1429793359-6813-1-git-send-email-bruce.richardson@intel.com (mailing list archive)
State Accepted, archived
Headers

Commit Message

Bruce Richardson April 23, 2015, 12:49 p.m. UTC
  There are no memcpy functions in rte_ip.h so there is no need to include
rte_memcpy.h in that file.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/librte_net/rte_ip.h | 1 -
 1 file changed, 1 deletion(-)
  

Comments

Thomas Monjalon April 23, 2015, 1:12 p.m. UTC | #1
2015-04-23 13:49, Bruce Richardson:
> There are no memcpy functions in rte_ip.h so there is no need to include
> rte_memcpy.h in that file.
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>

Applied, thanks
  

Patch

diff --git a/lib/librte_net/rte_ip.h b/lib/librte_net/rte_ip.h
index 74c9ced..cdbce20 100644
--- a/lib/librte_net/rte_ip.h
+++ b/lib/librte_net/rte_ip.h
@@ -80,7 +80,6 @@ 
 #include <stdint.h>
 #include <netinet/in.h>
 
-#include <rte_memcpy.h>
 #include <rte_byteorder.h>
 #include <rte_mbuf.h>