summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDu Huanpeng <duhuanpeng@loongson.cn>2019-11-27 09:07:51 +0800
committerSascha Hauer <s.hauer@pengutronix.de>2019-11-27 15:02:17 +0100
commitfa2081d1cfec04b94988c18d4b59645b2157f81f (patch)
tree9e08de784b1005aa73499085e1b1bfeab346461c
parenteef4e894057396bffc2d782d3bc50599a74ad9eb (diff)
downloadbarebox-fa2081d1cfec04b94988c18d4b59645b2157f81f.tar.gz
barebox-fa2081d1cfec04b94988c18d4b59645b2157f81f.tar.xz
MIPS: Makefile: minor codingstyle fix
it exceeds 80 chararacters per line, but is more readable and agrees agrees with the previous lines. Signed-off-by: Du Huanpeng <duhuanpeng@loongson.cn> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/mips/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index ee465dc8e9..1c10db599c 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -52,9 +52,7 @@ cflags-$(CONFIG_CPU_MIPS32_R1) += $(call cc-option,-march=mips32,-mips32 -U_MIPS
cflags-$(CONFIG_CPU_MIPS32_R2) += $(call cc-option,-march=mips32r2,-mips32r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS32) -Wa,-mips32r2 -Wa,--trap
cflags-$(CONFIG_CPU_MIPS64_R1) += $(call cc-option,-march=mips64,-mips64 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64) -Wa,-mips64 -Wa,--trap
cflags-$(CONFIG_CPU_MIPS64_R2) += $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64) -Wa,-mips64r2 -Wa,--trap
-cflags-$(CONFIG_CPU_LOONGSON1) += \
- $(call cc-option,-march=mips32r2,-mips32r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS32) \
- -Wa,-mips32r2 -Wa,--trap
+cflags-$(CONFIG_CPU_LOONGSON1) += $(call cc-option,-march=mips32r2,-mips32r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS32) -Wa,-mips32r2 -Wa,--trap
CPPFLAGS += -DTEXT_BASE=$(CONFIG_TEXT_BASE)