From: Masahiro Yamada Date: Fri, 31 Jul 2015 05:58:21 +0000 (+0900) Subject: soc: tegra: Remove redundant $(CONFIG_ARCH_TEGRA) in Makefile X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7c9fd23ff12e04f36be5ae5ff5dfe72fb913f215;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git soc: tegra: Remove redundant $(CONFIG_ARCH_TEGRA) in Makefile 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 Signed-off-by: Thierry Reding --- diff --git a/drivers/soc/tegra/Makefile b/drivers/soc/tegra/Makefile index cdaad9d53a05..ae857ff7d53d 100644 --- a/drivers/soc/tegra/Makefile +++ b/drivers/soc/tegra/Makefile @@ -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