Merge to Fedora kernel-2.6.18-1.2239_FC5 patched with stable patch-2.6.18.2-vs2.0...
[linux-2.6.git] / include / asm-h8300 / init.h
1 #ifndef _H8300_INIT_H
2 #define _H8300_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