aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/init.h
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2008-02-19 21:00:18 +0100
committerSam Ravnborg <sam@ravnborg.org>2008-02-19 21:00:18 +0100
commit37c514e3dfc8f55145d9c6895e2838ac31859aa4 (patch)
tree3e626badf00d003c988c318d6de860b5444f5cf2 /include/linux/init.h
parentkbuild: fix reversed symbol name order in modpost (diff)
downloadlinux-dev-37c514e3dfc8f55145d9c6895e2838ac31859aa4.tar.xz
linux-dev-37c514e3dfc8f55145d9c6895e2838ac31859aa4.zip
Add missing init section definitions
When adding __devinitconst etc. the __initconst variant were missed. Add this one and proper definitions for .head.text for use in .S files. The naming .head.text is preferred over .text.head as the latter will conflict for a function named head when introducing -ffunctions-sections. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'include/linux/init.h')
-rw-r--r--include/linux/init.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/init.h b/include/linux/init.h
index a404a0055dd7..fb58c0493cf2 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -42,6 +42,7 @@
discard it in modules) */
#define __init __section(.init.text) __cold
#define __initdata __section(.init.data)
+#define __initconst __section(.init.rodata)
#define __exitdata __section(.exit.data)
#define __exit_call __used __section(.exitcall.exit)
@@ -106,6 +107,7 @@
#define __memexitconst __section(.memexit.rodata)
/* For assembly routines */
+#define __HEAD .section ".head.text","ax"
#define __INIT .section ".init.text","ax"
#define __FINIT .previous