diff options
Diffstat (limited to 'scripts')
-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) { |