diff options
Diffstat (limited to 'include/asm-m68knommu/unaligned.h')
-rw-r--r-- | include/asm-m68knommu/unaligned.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/include/asm-m68knommu/unaligned.h b/include/asm-m68knommu/unaligned.h index 869e9dd24f54..eb1ea4cb9a59 100644 --- a/include/asm-m68knommu/unaligned.h +++ b/include/asm-m68knommu/unaligned.h | |||
@@ -1,23 +1,25 @@ | |||
1 | #ifndef __M68K_UNALIGNED_H | 1 | #ifndef _ASM_M68KNOMMU_UNALIGNED_H |
2 | #define __M68K_UNALIGNED_H | 2 | #define _ASM_M68KNOMMU_UNALIGNED_H |
3 | 3 | ||
4 | 4 | ||
5 | #ifdef CONFIG_COLDFIRE | 5 | #ifdef CONFIG_COLDFIRE |
6 | #include <linux/unaligned/be_struct.h> | ||
7 | #include <linux/unaligned/le_byteshift.h> | ||
8 | #include <linux/unaligned/generic.h> | ||
6 | 9 | ||
7 | #include <asm-generic/unaligned.h> | 10 | #define get_unaligned __get_unaligned_be |
11 | #define put_unaligned __put_unaligned_be | ||
8 | 12 | ||
9 | #else | 13 | #else |
10 | /* | 14 | /* |
11 | * The m68k can do unaligned accesses itself. | 15 | * The m68k can do unaligned accesses itself. |
12 | * | ||
13 | * The strange macros are there to make sure these can't | ||
14 | * be misused in a way that makes them not work on other | ||
15 | * architectures where unaligned accesses aren't as simple. | ||
16 | */ | 16 | */ |
17 | #include <linux/unaligned/access_ok.h> | ||
18 | #include <linux/unaligned/generic.h> | ||
17 | 19 | ||
18 | #define get_unaligned(ptr) (*(ptr)) | 20 | #define get_unaligned __get_unaligned_be |
19 | #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) )) | 21 | #define put_unaligned __put_unaligned_be |
20 | 22 | ||
21 | #endif | 23 | #endif |
22 | 24 | ||
23 | #endif | 25 | #endif /* _ASM_M68KNOMMU_UNALIGNED_H */ |