diff mbox series

[v1,1/3] linux-gen: remove static_inline header

Message ID 1516377654-1536-2-git-send-email-odpbot@yandex.ru
State New
Headers show
Series [v1,1/3] linux-gen: remove static_inline header | expand

Commit Message

Github ODP bot Jan. 19, 2018, 4 p.m. UTC
From: Petri Savolainen <petri.savolainen@linaro.org>


This header file is not referenced anywhere. Remove it.

Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org>

---
/** Email created from pull request 409 (psavol:master-byteorder-inline)
 ** https://github.com/Linaro/odp/pull/409
 ** Patch: https://github.com/Linaro/odp/pull/409.patch
 ** Base sha: 5a4502fc6bc53e6503169da3028f456b64811a0b
 ** Merge commit sha: 7bc84d4d2e3971744d4dd9194ac9e8ec3182af09
 **/
 .../include/odp/api/plat/static_inline.h           | 43 ----------------------
 1 file changed, 43 deletions(-)
 delete mode 100644 platform/linux-generic/include/odp/api/plat/static_inline.h
diff mbox series

Patch

diff --git a/platform/linux-generic/include/odp/api/plat/static_inline.h b/platform/linux-generic/include/odp/api/plat/static_inline.h
deleted file mode 100644
index 633e2f273..000000000
--- a/platform/linux-generic/include/odp/api/plat/static_inline.h
+++ /dev/null
@@ -1,43 +0,0 @@ 
-/* Copyright (c) 2016, Linaro Limited
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-/**
- * @file
- *
- * Macro for static inline functions
- */
-
-#ifndef ODP_PLAT_STATIC_INLINE_H_
-#define ODP_PLAT_STATIC_INLINE_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * @internal
- * @def ODP_ABI_COMPAT
- * Control ABI compatibility
- */
-
-/**
- * @internal
- * @def _ODP_INLINE
- * Define a function as inlined or not inlined (for ABI compatibility)
- */
-#if 1
-#define ODP_ABI_COMPAT 1
-#define _ODP_INLINE
-#else
-#define ODP_ABI_COMPAT 0
-#define _ODP_INLINE static inline
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif