Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b35de672 authored by David Woodhouse's avatar David Woodhouse
Browse files

Revert "[ARM] use the new byteorder headers"



This reverts commit ae82cbfc. It
needs the new byteorder headers to be exported to userspace, and
they aren't yet -- and probably shouldn't be, at this point in the
2.6.27 release cycle (or ever, for that matter).

Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
Acked-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent afbc8d8e
Loading
Loading
Loading
Loading
+14 −11
Original line number Original line Diff line number Diff line
@@ -18,15 +18,7 @@
#include <linux/compiler.h>
#include <linux/compiler.h>
#include <asm/types.h>
#include <asm/types.h>


#ifdef __ARMEB__
static inline __attribute_const__ __u32 ___arch__swab32(__u32 x)
# define __BIG_ENDIAN
#else
# define __LITTLE_ENDIAN
#endif

#define __SWAB_64_THRU_32__

static inline __attribute_const__ __u32 __arch_swab32(__u32 x)
{
{
	__u32 t;
	__u32 t;


@@ -48,8 +40,19 @@ static inline __attribute_const__ __u32 __arch_swab32(__u32 x)


	return x;
	return x;
}
}
#define __arch_swab32 __arch_swab32


#include <linux/byteorder.h>
#define __arch__swab32(x) ___arch__swab32(x)

#if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
#  define __BYTEORDER_HAS_U64__
#  define __SWAB_64_THRU_32__
#endif


#ifdef __ARMEB__
#include <linux/byteorder/big_endian.h>
#else
#include <linux/byteorder/little_endian.h>
#endif
#endif

#endif