diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-25 14:10:15 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-05-23 08:58:51 -0400 |
commit | 3c7ec94d2c4a67d9663a080aa5080134308261c4 (patch) | |
tree | e4e7193b0641bddd9dd5e8d4bff7f4e60a38836f /scripts | |
parent | eb3d5cc67a525df5115c1dc1c0ff8a111bda70e4 (diff) |
modpost: use proper kernel style for autogenerated files
If the kernel build process is creating files automatically, the least
it can do is create them in a properly formatted manner. Sure, it's a
minor issue, but being consistent is nice.
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Alessio Igor Bogani <abogani@kernel.org>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Ben Hutchings <ben@decadent.org.uk>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mod/modpost.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index ea0eaca597b9..0f84bb38eb0d 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -1853,14 +1853,14 @@ static void add_header(struct buffer *b, struct module *mod) | |||
1853 | buf_printf(b, "\n"); | 1853 | buf_printf(b, "\n"); |
1854 | buf_printf(b, "struct module __this_module\n"); | 1854 | buf_printf(b, "struct module __this_module\n"); |
1855 | buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n"); | 1855 | buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n"); |
1856 | buf_printf(b, " .name = KBUILD_MODNAME,\n"); | 1856 | buf_printf(b, "\t.name = KBUILD_MODNAME,\n"); |
1857 | if (mod->has_init) | 1857 | if (mod->has_init) |
1858 | buf_printf(b, " .init = init_module,\n"); | 1858 | buf_printf(b, "\t.init = init_module,\n"); |
1859 | if (mod->has_cleanup) | 1859 | if (mod->has_cleanup) |
1860 | buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n" | 1860 | buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n" |
1861 | " .exit = cleanup_module,\n" | 1861 | "\t.exit = cleanup_module,\n" |
1862 | "#endif\n"); | 1862 | "#endif\n"); |
1863 | buf_printf(b, " .arch = MODULE_ARCH_INIT,\n"); | 1863 | buf_printf(b, "\t.arch = MODULE_ARCH_INIT,\n"); |
1864 | buf_printf(b, "};\n"); | 1864 | buf_printf(b, "};\n"); |
1865 | } | 1865 | } |
1866 | 1866 | ||