From: Masahiro Yamada Date: Wed, 15 May 2019 04:31:22 +0000 (+0900) Subject: staging: erofs: drop unneeded -Wall addition X-Git-Tag: v5.3-rc1~126^2~487 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5249495da04956f251acda59f840696d85994f55;p=thirdparty%2Fkernel%2Flinux.git staging: erofs: drop unneeded -Wall addition The top level Makefile adds -Wall globally: KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \ I see two "-Wall" added for compiling objects in drivers/staging/erofs/. Signed-off-by: Masahiro Yamada Reviewed-by: Chao Yu Reviewed-by: Gao Xiang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/erofs/Makefile b/drivers/staging/erofs/Makefile index 38ab344a285ef..a34248a2a16a2 100644 --- a/drivers/staging/erofs/Makefile +++ b/drivers/staging/erofs/Makefile @@ -2,7 +2,7 @@ EROFS_VERSION = "1.0pre1" -ccflags-y += -Wall -DEROFS_VERSION=\"$(EROFS_VERSION)\" +ccflags-y += -DEROFS_VERSION=\"$(EROFS_VERSION)\" obj-$(CONFIG_EROFS_FS) += erofs.o # staging requirement: to be self-contained in its own directory