aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mod/modpost.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-11-23 16:57:22 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-12-01 22:21:58 +0900
commitc6826ad8a49f1230dcbc45dac26b54d492b13280 (patch)
tree40508a256ffb34242576c7c803b8e248715fa6ca /scripts/mod/modpost.c
parentmodpost: refactor seen flag clearing in add_depends() (diff)
downloadlinux-dev-c6826ad8a49f1230dcbc45dac26b54d492b13280.tar.xz
linux-dev-c6826ad8a49f1230dcbc45dac26b54d492b13280.zip
modpost: merge module iterations
Probably, this is just a matter of the order of error/warning messages. Merge the two for-loops. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to '')
-rw-r--r--scripts/mod/modpost.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index eedc2742dc8e..963a0b69b9a3 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -2496,12 +2496,6 @@ int main(int argc, char **argv)
if (files_source)
read_symbols_from_files(files_source);
- for (mod = modules; mod; mod = mod->next) {
- if (mod->skip)
- continue;
- check_exports(mod);
- }
-
err = 0;
for (mod = modules; mod; mod = mod->next) {
@@ -2513,6 +2507,7 @@ int main(int argc, char **argv)
buf.pos = 0;
err |= check_modname_len(mod);
+ check_exports(mod);
add_header(&buf, mod);
add_intree_flag(&buf, !external_module);
add_retpoline(&buf);