diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-01-24 16:16:20 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-01-28 17:21:18 -0500 |
commit | 3ff6eecca4e5c49a5d1dd8b58ea0e20102ce08f0 (patch) | |
tree | 9af53a5ce0054520be6d572f988a76f3ab4ef0c0 /scripts/mod/modpost.c | |
parent | bc395add945659e04cc7cf250755ba0edc1a9fdc (diff) |
remove __attribute_used__
Remove the deprecated __attribute_used__.
[Introduce __section in a few places to silence checkpatch /sam]
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/mod/modpost.c')
-rw-r--r-- | scripts/mod/modpost.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 0a80acafd212..e75739ec9c03 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -1445,7 +1445,7 @@ static int add_versions(struct buffer *b, struct module *mod) | |||
1445 | 1445 | ||
1446 | buf_printf(b, "\n"); | 1446 | buf_printf(b, "\n"); |
1447 | buf_printf(b, "static const struct modversion_info ____versions[]\n"); | 1447 | buf_printf(b, "static const struct modversion_info ____versions[]\n"); |
1448 | buf_printf(b, "__attribute_used__\n"); | 1448 | buf_printf(b, "__used\n"); |
1449 | buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n"); | 1449 | buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n"); |
1450 | 1450 | ||
1451 | for (s = mod->unres; s; s = s->next) { | 1451 | for (s = mod->unres; s; s = s->next) { |
@@ -1476,7 +1476,7 @@ static void add_depends(struct buffer *b, struct module *mod, | |||
1476 | 1476 | ||
1477 | buf_printf(b, "\n"); | 1477 | buf_printf(b, "\n"); |
1478 | buf_printf(b, "static const char __module_depends[]\n"); | 1478 | buf_printf(b, "static const char __module_depends[]\n"); |
1479 | buf_printf(b, "__attribute_used__\n"); | 1479 | buf_printf(b, "__used\n"); |
1480 | buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n"); | 1480 | buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n"); |
1481 | buf_printf(b, "\"depends="); | 1481 | buf_printf(b, "\"depends="); |
1482 | for (s = mod->unres; s; s = s->next) { | 1482 | for (s = mod->unres; s; s = s->next) { |