diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-17 20:38:54 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-31 13:26:44 -0400 |
commit | 37d82beb57fa5ff2cee42b7caebfbb9f6c2c3f42 (patch) | |
tree | 0bfea51031b27665ec385a026e7bb6d92e2f8407 /spl | |
parent | e82004bc68cba738b316897bd7a31191ab19f04f (diff) |
ARM: tegra: move Tegra specific code under arch/arm/
This patch moves Tegra specific directory entries
from the toplevel Makefile and spl/Makefile
to arch/arm/cpu/*/Makefile using Kbuild descending feature.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Tom Warren <TWarren@nvidia.com>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/spl/Makefile b/spl/Makefile index d24c1cd4dad..d3dc51133e1 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -109,11 +109,7 @@ ifneq (,$(CONFIG_MX23)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35)) LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o endif -ifneq ($(CONFIG_TEGRA),) -LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o -LIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o -LIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o -endif +LIBS-$(CONFIG_ARM) += arch/arm/cpu/libcpu.o ifneq ($(CONFIG_MX23)$(CONFIG_MX35),) LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o |