diff options
| author | Mark Brown <broonie@kernel.org> | 2016-02-19 19:20:02 +0300 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2016-02-19 19:20:02 +0300 |
| commit | 88a69d7b07747af08f737b160b27503b1400d3b6 (patch) | |
| tree | 3205fa71ba94e1b50ed74c80cd13ac6aecd066c4 /scripts | |
| parent | 8faa268ab780a7379cfe54b882c6f6e0083233f2 (diff) | |
| parent | f11aec0d7c835c3b83e74e3fd60d2e48a850c857 (diff) | |
| download | linux-88a69d7b07747af08f737b160b27503b1400d3b6.tar.xz | |
Merge tag 'asoc-fix-v4.5-rc4' into asoc-qcom
ASoC: Fixes for v4.5
A rather large batch of fixes here, almost all in the Intel driver.
The changes that got merged in this merge window for Skylake were rather
large and as well as issues that you'd expect in a large block of new
code there were some problems created for older processors which needed
fixing up. Things are largely settling down now hopefully.
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; |
