Skip to content

Commit

Permalink
ARM: EXYNOS: mcpm rename the power_down_finish
Browse files Browse the repository at this point in the history
Since commit 166aaf3 ("ARM: 8029/1: mcpm: Rename the power_down_finish()
functions to be less confusing") changed the name of power_down_finish to
wait_for_cpu_powerdown, so use new member name wait_for_cpu_powerdown.

Reported-by: Arnd Bergmann <[email protected]>
Signed-off-by: Kukjin Kim <[email protected]>
  • Loading branch information
kgene committed May 30, 2014
1 parent f99acff commit 7c5688e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-exynos/mcpm-exynos.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ static void exynos_power_down(void)
/* Not dead at this point? Let our caller cope. */
}

static int exynos_power_down_finish(unsigned int cpu, unsigned int cluster)
static int exynos_wait_for_powerdown(unsigned int cpu, unsigned int cluster)
{
unsigned int tries = 100;
unsigned int cpunr = cpu + (cluster * EXYNOS5420_CPUS_PER_CLUSTER);
Expand All @@ -261,7 +261,7 @@ static int exynos_power_down_finish(unsigned int cpu, unsigned int cluster)
static const struct mcpm_platform_ops exynos_power_ops = {
.power_up = exynos_power_up,
.power_down = exynos_power_down,
.power_down_finish = exynos_power_down_finish,
.wait_for_powerdown = exynos_wait_for_powerdown,
};

static void __init exynos_mcpm_usage_count_init(void)
Expand Down

0 comments on commit 7c5688e

Please sign in to comment.