diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2009-06-15 09:50:49 -0400 |
---|---|---|
committer | Vegard Nossum <vegard.nossum@gmail.com> | 2009-06-15 09:50:49 -0400 |
commit | 722f2a6c87f34ee0fd0130a8cf45f81e0705594a (patch) | |
tree | 50b054df34d2731eb0ba0cf1a6c27e43e7eed428 /include/asm-generic/unaligned.h | |
parent | 7a0aeb14e18ad59394bd9bbc6e57fb345819e748 (diff) | |
parent | 45e3e1935e2857c54783291107d33323b3ef33c8 (diff) |
Merge commit 'linus/master' into HEAD
Conflicts:
MAINTAINERS
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
Diffstat (limited to 'include/asm-generic/unaligned.h')
-rw-r--r-- | include/asm-generic/unaligned.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/asm-generic/unaligned.h b/include/asm-generic/unaligned.h new file mode 100644 index 000000000000..03cf5936bad6 --- /dev/null +++ b/include/asm-generic/unaligned.h | |||
@@ -0,0 +1,30 @@ | |||
1 | #ifndef __ASM_GENERIC_UNALIGNED_H | ||
2 | #define __ASM_GENERIC_UNALIGNED_H | ||
3 | |||
4 | /* | ||
5 | * This is the most generic implementation of unaligned accesses | ||
6 | * and should work almost anywhere. | ||
7 | * | ||
8 | * If an architecture can handle unaligned accesses in hardware, | ||
9 | * it may want to use the linux/unaligned/access_ok.h implementation | ||
10 | * instead. | ||
11 | */ | ||
12 | #include <asm/byteorder.h> | ||
13 | |||
14 | #if defined(__LITTLE_ENDIAN) | ||
15 | # include <linux/unaligned/le_struct.h> | ||
16 | # include <linux/unaligned/be_byteshift.h> | ||
17 | # include <linux/unaligned/generic.h> | ||
18 | # define get_unaligned __get_unaligned_le | ||
19 | # define put_unaligned __put_unaligned_le | ||
20 | #elif defined(__BIG_ENDIAN) | ||
21 | # include <linux/unaligned/be_struct.h> | ||
22 | # include <linux/unaligned/le_byteshift.h> | ||
23 | # include <linux/unaligned/generic.h> | ||
24 | # define get_unaligned __get_unaligned_be | ||
25 | # define put_unaligned __put_unaligned_be | ||
26 | #else | ||
27 | # error need to define endianess | ||
28 | #endif | ||
29 | |||
30 | #endif /* __ASM_GENERIC_UNALIGNED_H */ | ||