diff options
author | Paul Walmsley <paul@pwsan.com> | 2009-12-09 02:33:12 +0300 |
---|---|---|
committer | paul <paul@twilight.(none)> | 2009-12-12 03:00:41 +0300 |
commit | 2354eb5a943e64c5e6e249147381e9715aa5d54b (patch) | |
tree | 6341bf9adfb93f3a59a1476a7fc5254f24529bdd /arch/arm/mach-omap2/pm-debug.c | |
parent | 6a06fa6863f190a0ed72f273a2ae5fedc89973ff (diff) | |
download | linux-2354eb5a943e64c5e6e249147381e9715aa5d54b.tar.xz |
OMAP powerdomain/PM: use symbolic constants for the max number of power states
Replace some bare constants with power states.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-omap2/pm-debug.c')
-rw-r--r-- | arch/arm/mach-omap2/pm-debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index 8baa30d2acfb..860b755d2220 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c @@ -326,7 +326,7 @@ int pm_dbg_regset_save(int reg_set) return 0; } -static const char pwrdm_state_names[][4] = { +static const char pwrdm_state_names[][PWRDM_MAX_PWRSTS] = { "OFF", "RET", "INA", @@ -381,7 +381,7 @@ static int pwrdm_dbg_show_counter(struct powerdomain *pwrdm, void *user) seq_printf(s, "%s (%s)", pwrdm->name, pwrdm_state_names[pwrdm->state]); - for (i = 0; i < 4; i++) + for (i = 0; i < PWRDM_MAX_PWRSTS; i++) seq_printf(s, ",%s:%d", pwrdm_state_names[i], pwrdm->state_counter[i]); |