Simon Kagstrom | 20938e5 | 2009-07-07 15:58:51 +0200 | [diff] [blame] | 1 | #ifndef _ASM_ARM_UNALIGNED_H |
| 2 | #define _ASM_ARM_UNALIGNED_H |
| 3 | |
Remy Bohmer | 25793f7 | 2009-10-29 12:29:37 +0100 | [diff] [blame] | 4 | #include <linux/unaligned/le_byteshift.h> |
| 5 | #include <linux/unaligned/be_byteshift.h> |
Simon Kagstrom | 20938e5 | 2009-07-07 15:58:51 +0200 | [diff] [blame] | 6 | #include <linux/unaligned/generic.h> |
| 7 | |
| 8 | /* |
| 9 | * Select endianness |
| 10 | */ |
| 11 | #ifndef __ARMEB__ |
| 12 | #define get_unaligned __get_unaligned_le |
| 13 | #define put_unaligned __put_unaligned_le |
| 14 | #else |
| 15 | #define get_unaligned __get_unaligned_be |
| 16 | #define put_unaligned __put_unaligned_be |
| 17 | #endif |
| 18 | |
| 19 | #endif /* _ASM_ARM_UNALIGNED_H */ |