diff options
author | 2021-07-27 11:25:08 +0300 | |
---|---|---|
committer | 2021-07-27 11:25:08 +0300 | |
commit | 353b7a55dcaf5fb8758e09ebe2ddf5f3adbac7c5 (patch) | |
tree | 081200957b3d8925cbe913020d45a4e3ba61a7a3 /scripts/mod | |
parent | bus: ti-sysc: Fix gpt12 system timer issue with reserved status (diff) | |
parent | omap5-board-common: remove not physically existing vdds_1v8_main fixed-regulator (diff) | |
download | wireguard-linux-353b7a55dcaf5fb8758e09ebe2ddf5f3adbac7c5.tar.xz wireguard-linux-353b7a55dcaf5fb8758e09ebe2ddf5f3adbac7c5.zip |
Merge branch 'fixes-v5.14' into fixes
Diffstat (limited to 'scripts/mod')
-rw-r--r-- | scripts/mod/modpost.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 3e623ccc020b..270a7df898e2 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -660,8 +660,11 @@ static void handle_modversion(const struct module *mod, unsigned int crc; if (sym->st_shndx == SHN_UNDEF) { - warn("EXPORT symbol \"%s\" [%s%s] version generation failed, symbol will not be versioned.\n", - symname, mod->name, mod->is_vmlinux ? "" : ".ko"); + warn("EXPORT symbol \"%s\" [%s%s] version ...\n" + "Is \"%s\" prototyped in <asm/asm-prototypes.h>?\n", + symname, mod->name, mod->is_vmlinux ? "" : ".ko", + symname); + return; } |