1 #ifndef _ASM_POWERPC_UNALIGNED_H
2 #define _ASM_POWERPC_UNALIGNED_H
7 * The PowerPC can do unaligned accesses itself in big endian mode.
9 * The strange macros are there to make sure these can't
10 * be misused in a way that makes them not work on other
11 * architectures where unaligned accesses aren't as simple.
14 #define get_unaligned(ptr) (*(ptr))
16 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
18 #endif /* __KERNEL__ */
19 #endif /* _ASM_POWERPC_UNALIGNED_H */