home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-frv / init.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  340 b   |  13 lines

  1. #ifndef _ASM_INIT_H
  2. #define _ASM_INIT_H
  3.  
  4. #define __init __attribute__ ((__section__ (".text.init")))
  5. #define __initdata __attribute__ ((__section__ (".data.init")))
  6. /* For assembly routines */
  7. #define __INIT        .section    ".text.init",#alloc,#execinstr
  8. #define __FINIT        .previous
  9. #define __INITDATA    .section    ".data.init",#alloc,#write
  10.  
  11. #endif
  12.  
  13.