From 2c1258c620c5847649367394439cc10d0331d211 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 15 Jul 2017 20:22:25 +0200 Subject: Move get_unaligned_le32() macros to platform.h Signed-off-by: Denys Vlasenko --- networking/tls_aes.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'networking/tls_aes.c') diff --git a/networking/tls_aes.c b/networking/tls_aes.c index 6992f1c90..c137442e9 100644 --- a/networking/tls_aes.c +++ b/networking/tls_aes.c @@ -40,10 +40,6 @@ */ #include "tls.h" -/* TODO: grep for this and move to libbb */ -#define get_unaligned_be32(buf) ({ uint32_t v; move_from_unaligned32(v, buf); SWAP_BE32(v); }) - - // The lookup-tables are marked const so they can be placed in read-only storage instead of RAM // The numbers below can be computed dynamically trading ROM for RAM - // This can be useful in (embedded) bootloader applications, where ROM is often limited. -- cgit v1.2.3