diff options
| author | Takashi Iwai <tiwai@suse.de> | 2016-02-10 01:08:37 +0300 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2016-02-10 01:08:37 +0300 |
| commit | 397da2d0ab0d1398242622d80a74df7245395c63 (patch) | |
| tree | 51e01a67c653c67108f65d063b8b9cbfacf0b1a7 /scripts | |
| parent | b8cb3750ce94d7610934465263850dcf40736bca (diff) | |
| parent | 4dff5c7b7093b19c19d3a100f8a3ad87cb7cd9e7 (diff) | |
| download | linux-397da2d0ab0d1398242622d80a74df7245395c63.tar.xz | |
Merge branch 'topic/core-fixes' into for-linus
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/mod/modpost.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index e080746e1a6b..48958d3cec9e 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -594,7 +594,8 @@ static int ignore_undef_symbol(struct elf_info *info, const char *symname) if (strncmp(symname, "_restgpr0_", sizeof("_restgpr0_") - 1) == 0 || strncmp(symname, "_savegpr0_", sizeof("_savegpr0_") - 1) == 0 || strncmp(symname, "_restvr_", sizeof("_restvr_") - 1) == 0 || - strncmp(symname, "_savevr_", sizeof("_savevr_") - 1) == 0) + strncmp(symname, "_savevr_", sizeof("_savevr_") - 1) == 0 || + strcmp(symname, ".TOC.") == 0) return 1; /* Do not ignore this symbol */ return 0; |
