Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1485898 > unrolled thread

[PATCH] ARM: mediatek: clean up mach-mediatek/Makefile

Started byMasahiro Yamada <yamada.masahiro@socionext.com>
First post2016-09-18 20:20 +0200
Last post2016-09-18 20:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] ARM: mediatek: clean up mach-mediatek/Makefile Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-09-18 20:20 +0200

#1485898 — [PATCH] ARM: mediatek: clean up mach-mediatek/Makefile

FromMasahiro Yamada <yamada.masahiro@socionext.com>
Date2016-09-18 20:20 +0200
Subject[PATCH] ARM: mediatek: clean up mach-mediatek/Makefile
Message-ID<siOR4-35Q-23@gated-at.bofh.it>
Kbuild descends into arch/arm/mach-mediatek/Makefile only when
CONFIG_ARCH_MEDIATEK is enabled.  So, obj-$(CONFIG_ARCH_MEDIATEK)
is always equivalent to obj-y in this Makefile.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm/mach-mediatek/Makefile | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/arch/arm/mach-mediatek/Makefile b/arch/arm/mach-mediatek/Makefile
index 2116460..dadae67 100644
--- a/arch/arm/mach-mediatek/Makefile
+++ b/arch/arm/mach-mediatek/Makefile
@@ -1,4 +1,2 @@
-ifeq ($(CONFIG_SMP),y)
-obj-$(CONFIG_ARCH_MEDIATEK) += platsmp.o
-endif
-obj-$(CONFIG_ARCH_MEDIATEK) += mediatek.o
+obj-$(CONFIG_SMP)	+= platsmp.o
+obj-y			+= mediatek.o
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web