From 24f2bc34ebb95e5ced9a123fecf4ced16a4b54fe Mon Sep 17 00:00:00 2001 From: Hridaya Prajapati Date: Tue, 23 Jul 2024 22:09:24 +0545 Subject: [PATCH] Makefile: Enable misleading indentation and bool operation warnings This reverts commit 3d600971938918084d95593056e9f8f74d86fd6c. Let's fix these warnings. Change-Id: I9e00c4f60f2030a62955aa6bb403ffc27d2d596c --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 0e5e2ebc1b7b..3cbfeb4e1aa1 100644 --- a/Makefile +++ b/Makefile @@ -519,8 +519,6 @@ endif ifneq ($(LLVM_IAS),1) CLANG_FLAGS += -no-integrated-as endif -CLANG_FLAGS += $(call cc-option, -Wno-misleading-indentation) -CLANG_FLAGS += $(call cc-option, -Wno-bool-operation) CLANG_FLAGS += -Werror=unknown-warning-option CLANG_FLAGS += $(call cc-option, -Wno-unsequenced) KBUILD_CFLAGS += $(CLANG_FLAGS)