diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-15 13:27:21 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-17 10:25:10 +0900 |
commit | b74c0cad3d5f4f2252f1a42e160dc0e202e88e93 (patch) | |
tree | d99b0896b69445520e7074c4c076cad5b99e9a4a /arch/riscv | |
parent | eef58fdd010796a39be721b66c80d4a19b876e79 (diff) | |
download | linux-b74c0cad3d5f4f2252f1a42e160dc0e202e88e93.tar.bz2 |
riscv: drop unneeded -Wall addition
The top level Makefile adds -Wall globally:
KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \
For riscv, I see two "-Wall" added for compiling each object.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/riscv')
-rw-r--r-- | arch/riscv/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile index f8b3b07e4247..7a117be8297c 100644 --- a/arch/riscv/Makefile +++ b/arch/riscv/Makefile @@ -34,8 +34,6 @@ else KBUILD_LDFLAGS += -melf32lriscv endif -KBUILD_CFLAGS += -Wall - # ISA string setting riscv-march-$(CONFIG_ARCH_RV32I) := rv32ima riscv-march-$(CONFIG_ARCH_RV64I) := rv64ima |