blob: 6c95dfa2652f332cbdcf73b04565d7c3e546cad0 [file] [log] [blame]
jdl@freescale.coma37c8872005-09-07 15:27:09 -05001#ifndef _ASM_POWERPC_UNALIGNED_H
2#define _ASM_POWERPC_UNALIGNED_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6/*
7 * The PowerPC can do unaligned accesses itself in big endian mode.
8 *
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.
12 */
13
14#define get_unaligned(ptr) (*(ptr))
15
16#define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
17
jdl@freescale.coma37c8872005-09-07 15:27:09 -050018#endif /* __KERNEL__ */
19#endif /* _ASM_POWERPC_UNALIGNED_H */