summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-02-26 03:02:59 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-02-26 03:02:59 +0200
commitbd2675a8b0f51d91d65da0101bba13c147cad59b (patch)
tree8f8e3e6f2dfd0df5875045f5eb89ccd0d34b85dc
parent5a19e9a3dea68dbc03d979902cdabd5cb633964f (diff)
kbuild.sh: Don't disable the implicit-fallthrough warning by default
This was done due to the latest stable version of the kernel not having implicit-fallthrough warnings fixed for ARM architectures. Now that this has been fixed, enable the warning again. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rwxr-xr-xkbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kbuild.sh b/kbuild.sh
index 7980463..697648c 100755
--- a/kbuild.sh
+++ b/kbuild.sh
@@ -89,7 +89,7 @@ done
# Platform
#
-kcflags="-Werror -Wno-error=cpp -Wno-implicit-fallthrough"
+kcflags="-Werror -Wno-error=cpp"
if [[ -z "$platform" ]] ; then
for f in $kbuild_root/platforms/*.sh ; do