Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61833
b: refs/heads/master
c: 1abe02f
h: refs/heads/master
i:
  61831: bc0636d
v: v3
  • Loading branch information
Stephen Rothwell authored and Sam Ravnborg committed Jul 16, 2007
1 parent caeb71b commit f009dce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 56a974fa2d595fe6ebe433c525b8232ead539b76
refs/heads/master: 1abe02fef95366208c264635a886785d18fd38bb
5 changes: 4 additions & 1 deletion trunk/scripts/mod/modpost.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 "
Expand Down

0 comments on commit f009dce

Please sign in to comment.