summaryrefslogtreecommitdiffstats
path: root/arch/xtensa/include/asm/unaligned.h
diff options
context:
space:
mode:
authorChris Zankel2008-11-06 15:40:46 +0100
committerChris Zankel2008-11-06 19:25:09 +0100
commit367b8112fe2ea5c39a7bb4d263dcdd9b612fae18 (patch)
tree9f3349189718dd2c5678faf0ab38f389786b6925 /arch/xtensa/include/asm/unaligned.h
parentxtensa: use the new byteorder headers (diff)
downloadkernel-qcow2-linux-367b8112fe2ea5c39a7bb4d263dcdd9b612fae18.tar.gz
kernel-qcow2-linux-367b8112fe2ea5c39a7bb4d263dcdd9b612fae18.tar.xz
kernel-qcow2-linux-367b8112fe2ea5c39a7bb4d263dcdd9b612fae18.zip
xtensa: move headers files to arch/xtensa/include
Move all header files for xtensa to arch/xtensa/include and platform and variant header files to the appropriate arch/xtensa/platforms/ and arch/xtensa/variants/ directories. Moving the files gets also rid of all uses of symlinks in the Makefile. This has been completed already for the majority of the architectures and xtensa is one out of six missing. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/include/asm/unaligned.h')
-rw-r--r--arch/xtensa/include/asm/unaligned.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/arch/xtensa/include/asm/unaligned.h b/arch/xtensa/include/asm/unaligned.h
new file mode 100644
index 000000000000..8f3424fc5d18
--- /dev/null
+++ b/arch/xtensa/include/asm/unaligned.h
@@ -0,0 +1,29 @@
+/*
+ * Xtensa doesn't handle unaligned accesses efficiently.
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
+ * Copyright (C) 2001 - 2005 Tensilica Inc.
+ */
+#ifndef _ASM_XTENSA_UNALIGNED_H
+#define _ASM_XTENSA_UNALIGNED_H
+
+#ifdef __XTENSA_EL__
+# include <linux/unaligned/le_memmove.h>
+# include <linux/unaligned/be_byteshift.h>
+# include <linux/unaligned/generic.h>
+# define get_unaligned __get_unaligned_le
+# define put_unaligned __put_unaligned_le
+#elif defined(__XTENSA_EB__)
+# include <linux/unaligned/be_memmove.h>
+# include <linux/unaligned/le_byteshift.h>
+# include <linux/unaligned/generic.h>
+# define get_unaligned __get_unaligned_be
+# define put_unaligned __put_unaligned_be
+#else
+# error processor byte order undefined!
+#endif
+
+#endif /* _ASM_XTENSA_UNALIGNED_H */