From: Ivan Malov Date: Sat, 3 Feb 2018 13:46:33 +0000 (+0000) Subject: net/sfc: rename version map file X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=7106c99cb8beb15c830eb26fe25ccfcc62a3b01a;p=dpdk.git net/sfc: rename version map file The version map filename does not comply with the format used by meson build rules for drivers (i.e. on the upper level) and needs to be revisited. This patch removes efx postfix from the driver title in the filename. Signed-off-by: Ivan Malov Signed-off-by: Andrew Rybchenko Acked-by: Bruce Richardson --- diff --git a/drivers/net/sfc/Makefile b/drivers/net/sfc/Makefile index cc4e4e5105..8a671dd20f 100644 --- a/drivers/net/sfc/Makefile +++ b/drivers/net/sfc/Makefile @@ -60,7 +60,7 @@ BASE_DRIVER_OBJS=$(sort $(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*. $(foreach obj, $(BASE_DRIVER_OBJS), \ $(eval CFLAGS_$(obj)+=$(CFLAGS_BASE_DRIVER))) -EXPORT_MAP := rte_pmd_sfc_efx_version.map +EXPORT_MAP := rte_pmd_sfc_version.map LIBABIVER := 1 diff --git a/drivers/net/sfc/rte_pmd_sfc_efx_version.map b/drivers/net/sfc/rte_pmd_sfc_efx_version.map deleted file mode 100644 index 31eca32ebe..0000000000 --- a/drivers/net/sfc/rte_pmd_sfc_efx_version.map +++ /dev/null @@ -1,4 +0,0 @@ -DPDK_17.02 { - - local: *; -}; diff --git a/drivers/net/sfc/rte_pmd_sfc_version.map b/drivers/net/sfc/rte_pmd_sfc_version.map new file mode 100644 index 0000000000..31eca32ebe --- /dev/null +++ b/drivers/net/sfc/rte_pmd_sfc_version.map @@ -0,0 +1,4 @@ +DPDK_17.02 { + + local: *; +};