added code again, which got removed my big merge:-(
[linux-2.6/linux-mips.git] / include / asm-i386 / unaligned.h
blob282ce190efb393c385a0a090797f1411a38b90dc
1 #ifndef __I386_UNALIGNED_H
2 #define __I386_UNALIGNED_H
4 /*
5 * The i386 can do unaligned accesses itself.
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.
12 #define get_unaligned(ptr) (*(ptr))
14 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
16 #endif