1
0
Fork 0

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>
hifive-unleashed-5.1
Sam Ravnborg 2006-08-09 08:23:55 +02:00 committed by Sam Ravnborg
parent 4635281c8e
commit 93659af1ce
1 changed files with 1 additions and 0 deletions

View File

@ -627,6 +627,7 @@ static int secref_whitelist(const char *modname, const char *tosec,
(strcmp(tosec, ".init.text") == 0))
return 1;
}
return 0;
}
/**