diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-07 17:29:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-07 17:29:34 -0500 |
commit | 581e400ff935d34d95811258586128bf11baef15 (patch) | |
tree | 6cbda2b0e7de94ebad95072d17cc0aa82c9d8ab3 /scripts/mod/modpost.c | |
parent | 6fbac201f95c03e4dbbd207caddaea8a00a78526 (diff) | |
parent | 0cad61d7a3d51e0237a7e421c75b04ebbb5062d0 (diff) |
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/mod/modpost.c')
-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, | |||
1685 | static void check_section_mismatch(const char *modname, struct elf_info *elf, | 1685 | static void check_section_mismatch(const char *modname, struct elf_info *elf, |
1686 | Elf_Rela *r, Elf_Sym *sym, const char *fromsec) | 1686 | Elf_Rela *r, Elf_Sym *sym, const char *fromsec) |
1687 | { | 1687 | { |
1688 | const char *tosec = sec_name(elf, get_secindex(elf, sym));; | 1688 | const char *tosec = sec_name(elf, get_secindex(elf, sym)); |
1689 | const struct sectioncheck *mismatch = section_mismatch(fromsec, tosec); | 1689 | const struct sectioncheck *mismatch = section_mismatch(fromsec, tosec); |
1690 | 1690 | ||
1691 | if (mismatch) { | 1691 | if (mismatch) { |