diff options
Diffstat (limited to 'include/asm-cris/unaligned.h')
-rw-r--r-- | include/asm-cris/unaligned.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/asm-cris/unaligned.h b/include/asm-cris/unaligned.h new file mode 100644 index 000000000000..7fbbb399f6f1 --- /dev/null +++ b/include/asm-cris/unaligned.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef __CRIS_UNALIGNED_H | ||
2 | #define __CRIS_UNALIGNED_H | ||
3 | |||
4 | /* | ||
5 | * CRIS can do unaligned accesses itself. | ||
6 | * | ||
7 | * The strange macros are there to make sure these can't | ||
8 | * be misused in a way that makes them not work on other | ||
9 | * architectures where unaligned accesses aren't as simple. | ||
10 | */ | ||
11 | |||
12 | #define get_unaligned(ptr) (*(ptr)) | ||
13 | |||
14 | #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) )) | ||
15 | |||
16 | #endif | ||