From eb8783320e52f9b0671aa82f2d05729584f8559b Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Mon, 29 Jun 2015 09:59:39 -0400 Subject: [PATCH] compat: remove unneeded macro BASE_SYMBOL was only here for completelness. DPDK currently doesn't need it, so lets remove it. Signed-off-by: Neil Horman Acked-by: Thomas Monjalon --- lib/librte_compat/rte_compat.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/librte_compat/rte_compat.h b/lib/librte_compat/rte_compat.h index 929a9182c4..1c3c8d5214 100644 --- a/lib/librte_compat/rte_compat.h +++ b/lib/librte_compat/rte_compat.h @@ -67,13 +67,6 @@ */ #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 - * to the internal function _ - */ -#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 @@ -101,7 +94,6 @@ */ #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)))) /* -- 2.20.1