USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / include / asm-m68knommu / unaligned.h
blob869e9dd24f544f276001793aeea97356c6230c0c
1 #ifndef __M68K_UNALIGNED_H
2 #define __M68K_UNALIGNED_H
5 #ifdef CONFIG_COLDFIRE
7 #include <asm-generic/unaligned.h>
9 #else
11 * The m68k can do unaligned accesses itself.
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.
18 #define get_unaligned(ptr) (*(ptr))
19 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
21 #endif
23 #endif