Commit 93659af1 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by Sam Ravnborg

kbuild: add missing return statement in modpost.c:secref_whitelist()

Noticed by: Magnus Damm <magnus@valinux.co.jp>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 4635281c
...@@ -627,6 +627,7 @@ static int secref_whitelist(const char *modname, const char *tosec, ...@@ -627,6 +627,7 @@ static int secref_whitelist(const char *modname, const char *tosec,
(strcmp(tosec, ".init.text") == 0)) (strcmp(tosec, ".init.text") == 0))
return 1; return 1;
} }
return 0;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment