diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-07-31 01:58:21 -0400 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2015-08-13 10:17:40 -0400 |
commit | 7c9fd23ff12e04f36be5ae5ff5dfe72fb913f215 (patch) | |
tree | 2d2bbd392c1279c5ddaa822f97a1f205c1add4d7 | |
parent | 1dad36cdd5d20b4d7ceca5026553e86b3315b022 (diff) |
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 <yamada.masahiro@socionext.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r-- | drivers/soc/tegra/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 @@ | |||
1 | obj-$(CONFIG_ARCH_TEGRA) += fuse/ | 1 | obj-y += fuse/ |
2 | 2 | ||
3 | obj-$(CONFIG_ARCH_TEGRA) += common.o | 3 | obj-y += common.o |
4 | obj-$(CONFIG_ARCH_TEGRA) += pmc.o | 4 | obj-y += pmc.o |