@@ -143,7 +143,6 @@ __LIB__libodp_la_SOURCES = \
odp_errno.c \
odp_event.c \
odp_init.c \
- odp_impl.c \
odp_linux.c \
odp_packet.c \
odp_packet_flags.c \
deleted file mode 100644
@@ -1,15 +0,0 @@
-/* Copyright (c) 2014, Linaro Limited
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-#include <odp/version.h>
-
-#define ODP_VERSION_IMPL 0
-#define ODP_VERSION_IMPL_STR ODP_VERSION_TO_STR(ODP_VERSION_IMPL)
-
-const char *odp_version_impl_str(void)
-{
- return ODP_VERSION_IMPL_STR;
-}
@@ -15,3 +15,11 @@ const char *odp_version_api_str(void)
{
return ODP_VERSION_API_STR;
}
+
+#define ODP_VERSION_IMPL 0
+#define ODP_VERSION_IMPL_STR ODP_VERSION_TO_STR(ODP_VERSION_IMPL)
+
+const char *odp_version_impl_str(void)
+{
+ return ODP_VERSION_IMPL_STR;
+}
Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> --- platform/linux-generic/Makefile.am | 1 - platform/linux-generic/odp_impl.c | 15 --------------- platform/linux-generic/odp_version.c | 8 ++++++++ 3 files changed, 8 insertions(+), 16 deletions(-) delete mode 100644 platform/linux-generic/odp_impl.c