mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 22:51:37 +00:00
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>
This commit is contained in:
parent
bc395add94
commit
3ff6eecca4
22 changed files with 41 additions and 50 deletions
|
@ -1445,7 +1445,7 @@ static int add_versions(struct buffer *b, struct module *mod)
|
|||
|
||||
buf_printf(b, "\n");
|
||||
buf_printf(b, "static const struct modversion_info ____versions[]\n");
|
||||
buf_printf(b, "__attribute_used__\n");
|
||||
buf_printf(b, "__used\n");
|
||||
buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
|
||||
|
||||
for (s = mod->unres; s; s = s->next) {
|
||||
|
@ -1476,7 +1476,7 @@ static void add_depends(struct buffer *b, struct module *mod,
|
|||
|
||||
buf_printf(b, "\n");
|
||||
buf_printf(b, "static const char __module_depends[]\n");
|
||||
buf_printf(b, "__attribute_used__\n");
|
||||
buf_printf(b, "__used\n");
|
||||
buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
|
||||
buf_printf(b, "\"depends=");
|
||||
for (s = mod->unres; s; s = s->next) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue