diff options
author | 2024-07-11 10:42:33 +0200 | |
---|---|---|
committer | 2024-07-11 10:42:33 +0200 | |
commit | 011b1134b82c2750d83a299a1369c678845de45a (patch) | |
tree | a6a2ba6bfa62b02cb7b00a67c6f449d965140e5a /scripts/mod/modpost.c | |
parent | sched/fair: set_load_weight() must also call reweight_task() for SCHED_IDLE tasks (diff) | |
parent | sched: Move psi_account_irqtime() out of update_rq_clock_task() hotpath (diff) | |
download | wireguard-linux-011b1134b82c2750d83a299a1369c678845de45a.tar.xz wireguard-linux-011b1134b82c2750d83a299a1369c678845de45a.zip |
Merge branch 'sched/urgent' into sched/core, to pick up fixes and refresh the branch
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | scripts/mod/modpost.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 937294ff164f..f48d72d22dc2 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -1647,10 +1647,11 @@ static void read_symbols(const char *modname) namespace = get_next_modinfo(&info, "import_ns", namespace); } + + if (extra_warn && !get_modinfo(&info, "description")) + warn("missing MODULE_DESCRIPTION() in %s\n", modname); } - if (extra_warn && !get_modinfo(&info, "description")) - warn("missing MODULE_DESCRIPTION() in %s\n", modname); for (sym = info.symtab_start; sym < info.symtab_stop; sym++) { symname = remove_dot(info.strtab + sym->st_name); |