Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masahiro Yamada and committed by
Thierry Reding
7c9fd23f 1dad36cd

+3 -3
+3 -3
drivers/soc/tegra/Makefile
··· 1 - obj-$(CONFIG_ARCH_TEGRA) += fuse/ 1 + obj-y += fuse/ 2 2 3 - obj-$(CONFIG_ARCH_TEGRA) += common.o 4 - obj-$(CONFIG_ARCH_TEGRA) += pmc.o 3 + obj-y += common.o 4 + obj-y += pmc.o