Geert Uytterhoeven | c315bd5 | 2009-02-05 10:07:46 +1000 | [diff] [blame] | 1 | #ifndef _ASM_M68K_UNALIGNED_H |
| 2 | #define _ASM_M68K_UNALIGNED_H |
Greg Ungerer | af85fe9 | 2009-01-29 16:50:22 +1000 | [diff] [blame] | 3 | |
| 4 | |
| 5 | #ifdef CONFIG_COLDFIRE |
| 6 | #include <linux/unaligned/be_struct.h> |
| 7 | #include <linux/unaligned/le_byteshift.h> |
| 8 | #include <linux/unaligned/generic.h> |
| 9 | |
| 10 | #define get_unaligned __get_unaligned_be |
| 11 | #define put_unaligned __put_unaligned_be |
| 12 | |
Sam Ravnborg | 4914802 | 2009-01-16 21:58:10 +1000 | [diff] [blame] | 13 | #else |
Greg Ungerer | af85fe9 | 2009-01-29 16:50:22 +1000 | [diff] [blame] | 14 | /* |
| 15 | * The m68k can do unaligned accesses itself. |
| 16 | */ |
| 17 | #include <linux/unaligned/access_ok.h> |
| 18 | #include <linux/unaligned/generic.h> |
| 19 | |
| 20 | #define get_unaligned __get_unaligned_be |
| 21 | #define put_unaligned __put_unaligned_be |
| 22 | |
Sam Ravnborg | 4914802 | 2009-01-16 21:58:10 +1000 | [diff] [blame] | 23 | #endif |
Greg Ungerer | af85fe9 | 2009-01-29 16:50:22 +1000 | [diff] [blame] | 24 | |
Geert Uytterhoeven | c315bd5 | 2009-02-05 10:07:46 +1000 | [diff] [blame] | 25 | #endif /* _ASM_M68K_UNALIGNED_H */ |