diff options
| author | Takashi Iwai <tiwai@suse.de> | 2016-02-08 10:16:55 +0300 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2016-02-08 10:16:55 +0300 |
| commit | c9e9daccc7a6a670a6619723138ace6752f4773b (patch) | |
| tree | ed38356575314aec55deda66ef856a9bfeaaf282 /scripts | |
| parent | 1f5e35636cc2737ccf1f67815cb33b978621f0f6 (diff) | |
| parent | ddce57a6f0a2d8d1bfacfa77f06043bc760403c2 (diff) | |
| download | linux-c9e9daccc7a6a670a6619723138ace6752f4773b.tar.xz | |
Merge branch 'topic/core-fixes' into for-next
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; |
