summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2020-10-11 20:54:31 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-01-19 18:26:11 +0100
commitbb562e6e0358fe0ecf6853f28dab615e90389f9a (patch)
tree60b5726a9f3e69f0af1a7c7539aeab65d0a0e10e /Makefile
parentceed81a883dc43e2073ecdcfd273fa179e24df5b (diff)
kbuild: enforce -Werror=return-type
commit 172aad81a882443eefe1bd860c4eddc81b14dd5b upstream. Catch errors which at least gcc tolerates by default: warning: 'return' with no value, in function returning non-void [-Wreturn-type] Signed-off-by: Olaf Hering <olaf@aepfle.de> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Cc: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5c9d680b7ce5..d87ef7a83907 100644
--- a/Makefile
+++ b/Makefile
@@ -480,7 +480,7 @@ KBUILD_AFLAGS := -D__ASSEMBLY__ -fno-PIE
KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \
-fno-strict-aliasing -fno-common -fshort-wchar -fno-PIE \
-Werror=implicit-function-declaration -Werror=implicit-int \
- -Wno-format-security \
+ -Werror=return-type -Wno-format-security \
-std=gnu89
KBUILD_CPPFLAGS := -D__KERNEL__
KBUILD_AFLAGS_KERNEL :=