aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2008-08-19 17:46:02 +0000
committerStefan Reinauer <stepan@openbios.org>2008-08-19 17:46:02 +0000
commit0e4671e30575ac0f12c482d128a146d85dd27987 (patch)
treeaa0ac3093ee11003faac5bbacb31f45b9d9b3a9a
parent59fb9a2bfa704422aa3ed64bd21d32bc18c64aa9 (diff)
replace static functions by macros, because otherwise every unused function
would warn. Bad thing for all -Werror folks out there. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Jordan Crouse <jordan.crouse@amd.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3521 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--payloads/libpayload/include/arch/endian.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/payloads/libpayload/include/arch/endian.h b/payloads/libpayload/include/arch/endian.h
index 995681494a..a50ac1fede 100644
--- a/payloads/libpayload/include/arch/endian.h
+++ b/payloads/libpayload/include/arch/endian.h
@@ -30,17 +30,12 @@
#ifndef _ARCH_ENDIAN_H
#define _ARCH_ENDIAN_H
-static u32 ntohl(u32 in)
-{
- return ((in & 0xFF) << 24) | ((in & 0xFF00) << 8) |
- ((in & 0xFF0000) >> 8) | ((in & 0xFF000000) >> 24);
-}
+#include <arch/types.h>
-static u64 ntohll(u64 in)
-{
- u32 h = in >> 32;
- u32 l = in & 0xFFFFFFFF;
+#define ntohw(in) ((( (in) & 0xFF) << 8) | (( (in) & 0xFF00) >> 8))
- return (((u64) ntohl(l) << 32) | ((u64) ntohl(h)));
-}
+#define ntohl(in) ((( (in) & 0xFF) << 24) | (( (in) & 0xFF00) << 8) | \
+ (( (in) & 0xFF0000) >> 8) | (( (in) & 0xFF000000) >> 24))
+
+#define ntohll(in) (((u64) ntohl( (in) & 0xFFFFFFFF) << 32) | ((u64) ntohl( (in) >> 32)))
#endif