diff options
author | Stephen Warren <swarren@nvidia.com> | 2016-07-18 12:15:05 -0600 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2016-07-21 09:31:30 -0700 |
commit | d0f45000babf0c89b75b4c779613afa0a900a608 (patch) | |
tree | 1a4036452ecff150350927a799abf0b227b7d6b8 /arch/arm/mach-tegra/tegra186/Makefile | |
parent | 1f60f0731db2e07eecc41afa92bee4b10e7d9f1f (diff) | |
download | u-boot-imx-d0f45000babf0c89b75b4c779613afa0a900a608.zip u-boot-imx-d0f45000babf0c89b75b4c779613afa0a900a608.tar.gz u-boot-imx-d0f45000babf0c89b75b4c779613afa0a900a608.tar.bz2 |
ARM: tegra: unify Tegra186 Makefile a bit
Many files in arch/arm/mach-tegra are compiled conditionally based on
Kconfig variables, or applicable to all platforms. We can let the main
Tegra Makefile handle compiling (or not) those files to avoid each SoC-
specific Makefile needing to duplicate entries for those files. This
leaves the SoC-specific Makefiles to compile truly SoC-specific code.
In the future, we'll hopefully add Kconfig variables for all the other
files, and refactor those files, and so reduce the need for SoC-specific
Makefiles and/or ifdefs in the Makefiles.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/tegra186/Makefile')
-rw-r--r-- | arch/arm/mach-tegra/tegra186/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/mach-tegra/tegra186/Makefile b/arch/arm/mach-tegra/tegra186/Makefile index ce4610d..188b097 100644 --- a/arch/arm/mach-tegra/tegra186/Makefile +++ b/arch/arm/mach-tegra/tegra186/Makefile @@ -2,7 +2,4 @@ # # SPDX-License-Identifier: GPL-2.0 -obj-y += ../arm64-mmu.o obj-y += ../board186.o -obj-y += ../lowlevel_init.o -obj-$(CONFIG_DISPLAY_CPUINFO) += ../sys_info.o |