diff options
author | Joseph Lo <josephl@nvidia.com> | 2013-04-02 05:20:50 +0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-04-04 00:45:42 +0400 |
commit | 4d82d0587b4a964ea3a7c73aa044b433000527dd (patch) | |
tree | 25e73400bbd45f02b313227a3355fa735a142722 /arch/arm/mach-tegra/pm.h | |
parent | c8c2e6069065fdecfb195a2c438c7faa964aef22 (diff) | |
download | linux-4d82d0587b4a964ea3a7c73aa044b433000527dd.tar.xz |
ARM: tegra: cpuidle: remove redundant parameters for powered-down mode
After the patch series for system suspending support, tegra_idle_lp2_last()
no longer uses its parameters cpu_on_time or cpu_off_time, so remove them.
Signed-off-by: Joseph Lo <josephl@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/pm.h')
-rw-r--r-- | arch/arm/mach-tegra/pm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/pm.h b/arch/arm/mach-tegra/pm.h index 73a45f181fd9..9d2d038bf12e 100644 --- a/arch/arm/mach-tegra/pm.h +++ b/arch/arm/mach-tegra/pm.h @@ -31,7 +31,7 @@ void restore_cpu_arch_register(void); void tegra_clear_cpu_in_lp2(int phy_cpu_id); bool tegra_set_cpu_in_lp2(int phy_cpu_id); -void tegra_idle_lp2_last(u32 cpu_on_time, u32 cpu_off_time); +void tegra_idle_lp2_last(void); extern void (*tegra_tear_down_cpu)(void); #ifdef CONFIG_PM_SLEEP |