diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-07 14:29:34 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-07 14:29:34 -0800 |
commit | 581e400ff935d34d95811258586128bf11baef15 (patch) | |
tree | 6cbda2b0e7de94ebad95072d17cc0aa82c9d8ab3 /scripts | |
parent | 6fbac201f95c03e4dbbd207caddaea8a00a78526 (diff) | |
parent | 0cad61d7a3d51e0237a7e421c75b04ebbb5062d0 (diff) | |
download | linux-581e400ff935d34d95811258586128bf11baef15.tar.gz linux-581e400ff935d34d95811258586128bf11baef15.tar.bz2 linux-581e400ff935d34d95811258586128bf11baef15.zip |
Merge tag 'modules-for-v4.16' of git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux
Pull modules updates from Jessica Yu:
"Minor code cleanups and MAINTAINERS update"
* tag 'modules-for-v4.16' of git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux:
modpost: Remove trailing semicolon
ftrace/module: Move ftrace_release_mod() to ddebug_cleanup label
MAINTAINERS: Remove from module & paravirt maintenance
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mod/modpost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 6510536c06df..9917f928d0fd 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -1685,7 +1685,7 @@ static void extable_mismatch_handler(const char* modname, struct elf_info *elf, static void check_section_mismatch(const char *modname, struct elf_info *elf, Elf_Rela *r, Elf_Sym *sym, const char *fromsec) { - const char *tosec = sec_name(elf, get_secindex(elf, sym));; + const char *tosec = sec_name(elf, get_secindex(elf, sym)); const struct sectioncheck *mismatch = section_mismatch(fromsec, tosec); if (mismatch) { |