diff options
author | Joseph Lo <josephl@nvidia.com> | 2013-01-25 01:38:32 -0500 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-01-28 13:15:21 -0500 |
commit | 24e30c9417230b359bf6dfeb923e90138df7c112 (patch) | |
tree | 05eca383b68801362b7676e2da9884bc4b7afcf2 | |
parent | 1395868c06bd41390e50e7c7fe9a4783dd620867 (diff) |
ARM: tegra: fix compile error when disable CPU_IDLE
The "sleep.S" file has many functions that be shared by different module
currently. Not just for CPU idle driver. Make it build as default now.
Reported-by: Rhyland Klein <rklein@nvidia.com>
Signed-off-by: Joseph Lo <josephl@nvidia.com>
[swarren: add sleep.o to separate line so each line only contains 1 file]
Signed-off-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r-- | arch/arm/mach-tegra/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index a839bb3d9703..f0520961bafe 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile | |||
@@ -10,8 +10,8 @@ obj-y += apbio.o | |||
10 | obj-y += pm.o | 10 | obj-y += pm.o |
11 | obj-y += reset.o | 11 | obj-y += reset.o |
12 | obj-y += reset-handler.o | 12 | obj-y += reset-handler.o |
13 | obj-y += sleep.o | ||
13 | obj-$(CONFIG_CPU_IDLE) += cpuidle.o | 14 | obj-$(CONFIG_CPU_IDLE) += cpuidle.o |
14 | obj-$(CONFIG_CPU_IDLE) += sleep.o | ||
15 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_clocks.o | 15 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_clocks.o |
16 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_clocks_data.o | 16 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_clocks_data.o |
17 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_speedo.o | 17 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_speedo.o |