compat: remove unneeded macro
authorNeil Horman <nhorman@tuxdriver.com>
Mon, 29 Jun 2015 13:59:39 +0000 (09:59 -0400)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 29 Jun 2015 14:41:23 +0000 (16:41 +0200)
BASE_SYMBOL was only here for completelness.
DPDK currently doesn't need it, so lets remove it.

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_compat/rte_compat.h

index 929a918..1c3c8d5 100644 (file)
  */
 #define VERSION_SYMBOL(b, e, n) __asm__(".symver " RTE_STR(b) RTE_STR(e) ", " RTE_STR(b) "@DPDK_" RTE_STR(n))
 
-/*
- * BASE_SYMBOL
- * Creates a symbol version table entry binding unversioned symbol <b>
- * to the internal function <b>_<e>
- */
-#define BASE_SYMBOL(b, e) __asm__(".symver " RTE_STR(b) RTE_STR(e) ", " RTE_STR(b)"@")
-
 /*
  * BIND_DEFAULT_SYMBOL
  * Creates a symbol version entry instructing the linker to bind references to
  */
 #define VERSION_SYMBOL(b, e, n)
 #define __vsym
-#define BASE_SYMBOL(b, e)
 #define BIND_DEFAULT_SYMBOL(b, e, n)
 #define MAP_STATIC_SYMBOL(f, p) f __attribute__((alias(RTE_STR(p))))
 /*