1
0
Fork 0

kbuild: suppress modpost warnings for references from the .toc section as used by powerpc

We should do better here by effetively "dereferencing" references to
the .toc (or the .got2) section, but that is much harder.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
hifive-unleashed-5.1
Stephen Rothwell 2007-05-24 14:16:13 +10:00 committed by Sam Ravnborg
parent 56a974fa2d
commit 1abe02fef9
1 changed files with 4 additions and 1 deletions

View File

@ -870,9 +870,12 @@ static void warn_sec_mismatch(const char *modname, const char *fromsec,
return;
/* fromsec whitelist - without a valid 'before'
* powerpc has a GOT table in .got2 section */
* powerpc has a GOT table in .got2 section
* and also a .toc section */
if (strcmp(fromsec, ".got2") == 0)
return;
if (strcmp(fromsec, ".toc") == 0)
return;
if (before && after) {
warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "