summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-08-22 05:04:15 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-08-22 05:04:15 +0300
commit0f0784ce3d247b439e60f5dc6890601574c884b6 (patch)
tree3acaa19b10ee1d030227f0c3383e42dff3ec8abc
parentbe97db4e5c924deddc9f1660e87b1af21bc501b7 (diff)
Ignore implicit fallthrough warning
The kernel has enabled the implicit fallthrough warning without fixing all warnings on ARM first. Disable the warning until this gets addressed. 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 9e4bbc5..a0086a8 100755
--- a/kbuild.sh
+++ b/kbuild.sh
@@ -79,7 +79,7 @@ done
# Platform
#
-kcflags="-Werror -Wno-error=cpp"
+kcflags="-Werror -Wno-error=cpp -Wno-implicit-fallthrough"
if [[ -z "$platform" ]] ; then
for f in $kbuild_root/platforms/*.sh ; do