diff options
| author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-15 13:31:22 +0900 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-20 07:40:41 +0200 |
| commit | 5249495da04956f251acda59f840696d85994f55 (patch) | |
| tree | b0e47c47d172a6836f187ab4c3dc864da84d2a61 /drivers/staging/erofs | |
| parent | 70eb40836ca4a465adc7f986454fe69a2474e14e (diff) | |
| download | lwn-5249495da04956f251acda59f840696d85994f55.tar.gz lwn-5249495da04956f251acda59f840696d85994f55.zip | |
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 <yamada.masahiro@socionext.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Reviewed-by: Gao Xiang <gaoxiang25@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/erofs')
| -rw-r--r-- | drivers/staging/erofs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/erofs/Makefile b/drivers/staging/erofs/Makefile index 38ab344a285e..a34248a2a16a 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 |
