mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-08 19:35:26 +07:00
![David Howells](/assets/img/avatar_default.png)
Move arch headers from include/asm-frv/ to arch/frv/include/asm/. Signed-off-by: David Howells <dhowells@redhat.com>
13 lines
340 B
C
13 lines
340 B
C
#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
|
|
|