diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-12-16 17:22:04 +0100 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-01-20 18:16:07 -0800 |
commit | 61b17d972f60fb8097592cadee2a2dd594285ff6 (patch) | |
tree | 4f5518cce45c92b979277daa228f21e87d098926 /arch | |
parent | e3d9329640e4b291cdd2c6d178774c28bba47d59 (diff) | |
download | linux-3.10-61b17d972f60fb8097592cadee2a2dd594285ff6.tar.gz linux-3.10-61b17d972f60fb8097592cadee2a2dd594285ff6.tar.bz2 linux-3.10-61b17d972f60fb8097592cadee2a2dd594285ff6.zip |
OMAP: omap3_pm_get_suspend_state() error ignored in pwrdm_suspend_get()
val is an u64 pointer, we need an int to check the error.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/pm-debug.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index e9d3993d1f9..562d190cd66 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c @@ -488,9 +488,11 @@ int pm_dbg_regset_init(int reg_set) static int pwrdm_suspend_get(void *data, u64 *val) { - *val = omap3_pm_get_suspend_state((struct powerdomain *)data); + int ret; + ret = omap3_pm_get_suspend_state((struct powerdomain *)data); + *val = ret; - if (*val >= 0) + if (ret >= 0) return 0; return *val; } |