aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2006-03-05 11:34:15 +0100
committerSam Ravnborg <sam@mars.ravnborg.org>2006-03-05 11:34:15 +0100
commite835a39c1c1f023ef443f735b0e98b08660ae0e4 (patch)
treed2790823b7f2f15917badc55828848790474a86f /scripts
parentkbuild: kill false positives from section mismatch warnings for powerpc (diff)
downloadlinux-dev-e835a39c1c1f023ef443f735b0e98b08660ae0e4.tar.xz
linux-dev-e835a39c1c1f023ef443f735b0e98b08660ae0e4.zip
kbuild: fix section mismatch check for unwind on IA64
Parameters to strstr() was reversed. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mod/modpost.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index c4dc1d72d02e..3b570b18c2e4 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -776,7 +776,7 @@ static int init_section_ref_ok(const char *name)
if (strncmp(*s, name, strlen(*s)) == 0)
return 1;
for (s = namelist3; *s; s++)
- if (strstr(*s, name) != NULL)
+ if (strstr(name, *s) != NULL)
return 1;
return 0;
}
@@ -842,7 +842,7 @@ static int exit_section_ref_ok(const char *name)
if (strncmp(*s, name, strlen(*s)) == 0)
return 1;
for (s = namelist3; *s; s++)
- if (strstr(*s, name) != NULL)
+ if (strstr(name, *s) != NULL)
return 1;
return 0;
}