summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-11-16 23:30:10 -0800
committerKhem Raj <raj.khem@gmail.com>2019-11-18 16:49:57 -0800
commitbd4e75ac21a2c40163277c696fd6723b0d9fbe12 (patch)
treee992a39f704fa2c7786fcff45cb34716545e62c9
parent0d2b80bd783fb2190c28caa2ebf3a13d4491d7c7 (diff)
downloadmeta-openembedded-bd4e75ac21a2c40163277c696fd6723b0d9fbe12.tar.gz
libkcapi: Move static inline functions where used
Clang warns about unused functions on some arches e.g. mips unused function '_bswap32' [-Werror,-Wunused-function] Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-crypto/libkcapi/libkcapi/0001-kcapi-kdf-Move-code-to-fix.patch71
-rw-r--r--meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb1
2 files changed, 72 insertions, 0 deletions
diff --git a/meta-oe/recipes-crypto/libkcapi/libkcapi/0001-kcapi-kdf-Move-code-to-fix.patch b/meta-oe/recipes-crypto/libkcapi/libkcapi/0001-kcapi-kdf-Move-code-to-fix.patch
new file mode 100644
index 0000000000..3dd7ea7f9b
--- /dev/null
+++ b/meta-oe/recipes-crypto/libkcapi/libkcapi/0001-kcapi-kdf-Move-code-to-fix.patch
@@ -0,0 +1,71 @@
1From 00c1654e368f728b213c4e3782045d54098edb25 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 16 Nov 2019 23:03:51 -0800
4Subject: [PATCH] kcapi-kdf: Move code to fix
5
6Fixes clang build
7unused function '_bswap32' [-Werror,-Wunused-function]
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 lib/kcapi-kdf.c | 36 ++++++++++++++++--------------------
12 1 file changed, 16 insertions(+), 20 deletions(-)
13
14diff --git a/lib/kcapi-kdf.c b/lib/kcapi-kdf.c
15index ea39846..8e4a636 100644
16--- a/lib/kcapi-kdf.c
17+++ b/lib/kcapi-kdf.c
18@@ -54,6 +54,20 @@
19 #include "kcapi.h"
20 #include "internal.h"
21
22+#define GCC_VERSION (__GNUC__ * 10000 \
23+ + __GNUC_MINOR__ * 100 \
24+ + __GNUC_PATCHLEVEL__)
25+#if GCC_VERSION >= 40400
26+# define __HAVE_BUILTIN_BSWAP32__
27+#endif
28+
29+#ifdef __HAVE_BUILTIN_BSWAP32__
30+# define be_bswap32(x) (uint32_t)__builtin_bswap32((uint32_t)(x))
31+/* Endian dependent byte swap operations. */
32+#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
33+# define be_bswap32(x) ((uint32_t)(x))
34+#elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
35+
36 static inline uint32_t rol32(uint32_t x, int n)
37 {
38 return ( (x << (n&(32-1))) | (x >> ((32-n)&(32-1))) );
39@@ -68,27 +82,9 @@ static inline uint32_t _bswap32(uint32_t x)
40 {
41 return ((rol32(x, 8) & 0x00ff00ffL) | (ror32(x, 8) & 0xff00ff00L));
42 }
43-
44-#define GCC_VERSION (__GNUC__ * 10000 \
45- + __GNUC_MINOR__ * 100 \
46- + __GNUC_PATCHLEVEL__)
47-#if GCC_VERSION >= 40400
48-# define __HAVE_BUILTIN_BSWAP32__
49-#endif
50-
51-#ifdef __HAVE_BUILTIN_BSWAP32__
52-# define _swap32(x) (uint32_t)__builtin_bswap32((uint32_t)(x))
53-#else
54-# define _swap32(x) _bswap32(x)
55-#endif
56-
57-/* Endian dependent byte swap operations. */
58-#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
59-# define be_bswap32(x) ((uint32_t)(x))
60-#elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
61-# define be_bswap32(x) _swap32(x)
62+# define be_bswap32(x) _bswap32(x)
63 #else
64-#error "Endianess not defined"
65+# error "Neither builtin_bswap32 nor endianess defined"
66 #endif
67
68 DSO_PUBLIC
69--
702.24.0
71
diff --git a/meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb b/meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb
index 799070972a..aa438e5859 100644
--- a/meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb
+++ b/meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb
@@ -10,6 +10,7 @@ SRCREV = "5649050d201856bf06c8738b5d2aa1710c86ac2f"
10PV = "1.1.5" 10PV = "1.1.5"
11SRC_URI = " \ 11SRC_URI = " \
12 git://github.com/smuellerDD/libkcapi.git \ 12 git://github.com/smuellerDD/libkcapi.git \
13 file://0001-kcapi-kdf-Move-code-to-fix.patch \
13" 14"
14 15
15inherit autotools 16inherit autotools