summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/unaligned.h
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2017-02-15 20:34:15 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2017-02-27 08:33:14 +0100
commit4c29a9511b0d95780c914d1b4277dae4061786d2 (patch)
tree88ce3440f17aff14fde1ffc5b4026c202955f8d4 /arch/x86/include/asm/unaligned.h
parent64db2d497ca4e1db7be08e303c17ed92c99af897 (diff)
downloadbarebox-4c29a9511b0d95780c914d1b4277dae4061786d2.tar.gz
barebox-4c29a9511b0d95780c914d1b4277dae4061786d2.tar.xz
efi: move x86 efi boot support to x86 arch
prepare to drop the efi arch as efi boot up is not arch sepecific Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/x86/include/asm/unaligned.h')
-rw-r--r--arch/x86/include/asm/unaligned.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/include/asm/unaligned.h b/arch/x86/include/asm/unaligned.h
index a7bd416b47..7e38706c5d 100644
--- a/arch/x86/include/asm/unaligned.h
+++ b/arch/x86/include/asm/unaligned.h
@@ -8,7 +8,12 @@
#include <linux/unaligned/access_ok.h>
#include <linux/unaligned/generic.h>
+#if __BYTE_ORDER == __LITTLE_ENDIAN
#define get_unaligned __get_unaligned_le
#define put_unaligned __put_unaligned_le
+#else
+#define get_unaligned __get_unaligned_be
+#define put_unaligned __put_unaligned_be
+#endif
#endif /* _ASM_X86_UNALIGNED_H */