diff options
author | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-08-09 02:23:55 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@neptun.ravnborg.org> | 2006-09-25 03:01:49 -0400 |
commit | 93659af1ce4974b1882668fee06458c0ac9315fd (patch) | |
tree | cce1792dc45864a79de718a115b015331a55768c /scripts | |
parent | 4635281c8ea26e9f718c28f8f7713d10ad332eff (diff) |
kbuild: add missing return statement in modpost.c:secref_whitelist()
Noticed by: Magnus Damm <magnus@valinux.co.jp>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mod/modpost.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 5028d46a8f35..16a19353c67f 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -627,6 +627,7 @@ static int secref_whitelist(const char *modname, const char *tosec, | |||
627 | (strcmp(tosec, ".init.text") == 0)) | 627 | (strcmp(tosec, ".init.text") == 0)) |
628 | return 1; | 628 | return 1; |
629 | } | 629 | } |
630 | return 0; | ||
630 | } | 631 | } |
631 | 632 | ||
632 | /** | 633 | /** |