soc: tegra: Remove redundant $(CONFIG_ARCH_TEGRA) in Makefile
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 31 Jul 2015 05:58:21 +0000 (14:58 +0900)
committerThierry Reding <treding@nvidia.com>
Thu, 13 Aug 2015 14:17:40 +0000 (16:17 +0200)
Kbuild descends into drivers/soc/tegra/ only when CONFIG_ARCH_TEGRA
is enabled. (see drivers/soc/Makefile)

$(CONFIG_ARCH_TEGRA) in drivers/soc/tegra/Makefile always evaluates
to 'y'.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/soc/tegra/Makefile

index cdaad9d53a0507c1405de6dd00209476d82e7751..ae857ff7d53d99c772d3a4c5809b618a17957fdb 100644 (file)
@@ -1,4 +1,4 @@
-obj-$(CONFIG_ARCH_TEGRA) += fuse/
+obj-y += fuse/
 
-obj-$(CONFIG_ARCH_TEGRA) += common.o
-obj-$(CONFIG_ARCH_TEGRA) += pmc.o
+obj-y += common.o
+obj-y += pmc.o