diff options
author | Yudong Tan <ytan@nvidia.com> | 2011-07-01 11:26:17 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@nvidia.com> | 2011-11-30 21:47:19 -0800 |
commit | f8cd6295ec46744ca93a76cc430faacbaac664a4 (patch) | |
tree | 2913d021afa34b271b3fd1f0fa778de23e309f13 /arch/arm/mach-tegra/Makefile | |
parent | 607cfa68323723eb2566f7259c6de9fe94703292 (diff) |
arm: tegra: Use new platform types
This change is needed to support three different platforms, silicon,
fpga and simulation.
Change-Id: I407853e1d86accbe3686deb4f34571fe6b10bcce
Reviewed-on: http://git-master/r/36351
Reviewed-by: Varun Colbert <vcolbert@nvidia.com>
Tested-by: Varun Colbert <vcolbert@nvidia.com>
Rebase-Id: Rc4b424f1a55ffb71245f3a8330559258124e2a19
Diffstat (limited to 'arch/arm/mach-tegra/Makefile')
-rw-r--r-- | arch/arm/mach-tegra/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index ac9e5a9eaa63..a53958789f48 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile @@ -33,13 +33,13 @@ obj-$(CONFIG_TEGRA_ARB_SEMAPHORE) += arb_sema.o obj-y += clock.o obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra3_clocks.o -ifneq ($(CONFIG_TEGRA_FPGA_PLATFORM),y) +ifeq ($(CONFIG_TEGRA_SILICON_PLATFORM),y) obj-y += dvfs.o obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_dvfs.o obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra3_dvfs.o endif obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_fuse.o -ifneq ($(CONFIG_TEGRA_FPGA_PLATFORM),y) +ifeq ($(CONFIG_TEGRA_SILICON_PLATFORM),y) obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_speedo.o obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra3_speedo.o obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra3_actmon.o |