You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
340 B
12 lines
340 B
#ifndef _ASM_INIT_H
|
|
#define _ASM_INIT_H
|
|
|
|
#define __init __attribute__ ((__section__ (".text.init")))
|
|
#define __initdata __attribute__ ((__section__ (".data.init")))
|
|
/* For assembly routines */
|
|
#define __INIT .section ".text.init",#alloc,#execinstr
|
|
#define __FINIT .previous
|
|
#define __INITDATA .section ".data.init",#alloc,#write
|
|
|
|
#endif
|
|
|
|
|