diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-01 00:06:56 +0900 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2021-07-22 11:56:25 +0200 |
commit | d17eef2767d84b7dc4e1b8029be1eacb1d8679f6 (patch) | |
tree | b5d736bdf26929c73422e7d928965f3cc640d941 /arch/mips | |
parent | 73b9919f3c17851b4c1d90fb6c343d9c438c554c (diff) | |
download | linux-stable-d17eef2767d84b7dc4e1b8029be1eacb1d8679f6.tar.gz linux-stable-d17eef2767d84b7dc4e1b8029be1eacb1d8679f6.tar.bz2 linux-stable-d17eef2767d84b7dc4e1b8029be1eacb1d8679f6.zip |
mips: replace deprecated EXTRA_CFLAGS with ccflags-y
As Documentation/kbuild/makefiles.rst says, EXTRA_CFLAGS is deprecated.
Replace it with ccflags-y.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kvm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kvm/Makefile b/arch/mips/kvm/Makefile index c67250a956b8..18c69eff1d3f 100644 --- a/arch/mips/kvm/Makefile +++ b/arch/mips/kvm/Makefile @@ -4,7 +4,7 @@ common-objs-y = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o eventfd.o binary_stats.o) -EXTRA_CFLAGS += -Ivirt/kvm -Iarch/mips/kvm +ccflags-y += -Ivirt/kvm -Iarch/mips/kvm common-objs-$(CONFIG_CPU_HAS_MSA) += msa.o |