diff options
author | Joseph Lo <josephl@nvidia.com> | 2013-04-02 01:20:50 +0000 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-04-03 14:45:42 -0600 |
commit | 4d82d0587b4a964ea3a7c73aa044b433000527dd (patch) | |
tree | 25e73400bbd45f02b313227a3355fa735a142722 /arch/arm/mach-tegra/pm.c | |
parent | c8c2e6069065fdecfb195a2c438c7faa964aef22 (diff) | |
download | linux-4d82d0587b4a964ea3a7c73aa044b433000527dd.tar.gz linux-4d82d0587b4a964ea3a7c73aa044b433000527dd.tar.bz2 linux-4d82d0587b4a964ea3a7c73aa044b433000527dd.zip |
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.c')
-rw-r--r-- | arch/arm/mach-tegra/pm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/pm.c b/arch/arm/mach-tegra/pm.c index 3a3318a83ad3..84d8742bdb1e 100644 --- a/arch/arm/mach-tegra/pm.c +++ b/arch/arm/mach-tegra/pm.c @@ -140,7 +140,7 @@ static int tegra_sleep_cpu(unsigned long v2p) return 0; } -void tegra_idle_lp2_last(u32 cpu_on_time, u32 cpu_off_time) +void tegra_idle_lp2_last(void) { tegra_pmc_pm_set(TEGRA_SUSPEND_LP2); |