~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/include/asm-m68k/unaligned.h

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #ifndef __M68K_UNALIGNED_H
  2 #define __M68K_UNALIGNED_H
  3 
  4 /*
  5  * The m68k can do unaligned accesses itself. 
  6  *
  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.
 10  */
 11 
 12 #define get_unaligned(ptr) (*(ptr))
 13 
 14 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
 15 
 16 #endif
 17 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.