diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2007-05-09 05:35:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-09 15:30:56 -0400 |
commit | e61a1c1c4f240cec61300c8f27518c3e47570fd4 (patch) | |
tree | 479d3b921577eaa642c4b1071acfeb4cb8ecf8ab /scripts/mod/modpost.c | |
parent | b52f52a093bb1e841e014c2087b5bee7162da413 (diff) |
Allow arch to initialize arch field of the module structure
This will later allow an arch to add module specific information via linker
generated tables instead of poking directly in the module object structure.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/mod/modpost.c')
-rw-r--r-- | scripts/mod/modpost.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 480e18b00aa6..113dc77b9f60 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -1343,6 +1343,7 @@ static void add_header(struct buffer *b, struct module *mod) | |||
1343 | buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n" | 1343 | buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n" |
1344 | " .exit = cleanup_module,\n" | 1344 | " .exit = cleanup_module,\n" |
1345 | "#endif\n"); | 1345 | "#endif\n"); |
1346 | buf_printf(b, " .arch = MODULE_ARCH_INIT,\n"); | ||
1346 | buf_printf(b, "};\n"); | 1347 | buf_printf(b, "};\n"); |
1347 | } | 1348 | } |
1348 | 1349 | ||