diff options
author | Rajendra Nayak <rnayak@ti.com> | 2010-05-19 06:24:01 +0400 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-05-20 22:31:13 +0400 |
commit | d3353e1654f60fc56b7a9a965af67e14b54d7f61 (patch) | |
tree | a4e4a2bdbaff61cb5069b70304bdff2d488e1f9a /arch/arm/plat-omap | |
parent | 1dc993b218c089230f463234380795c237de5038 (diff) | |
download | linux-d3353e1654f60fc56b7a9a965af67e14b54d7f61.tar.xz |
OMAP4 powerdomain: Fix pwrsts flags for ALWAYS ON domains
The pwrsts flag for ALWAYS ON domains like always_on_core_pwrdm
and wkup_pwrdm is wrongly populated with the define for a
powerdomain power state, instead of the allowable state
bitfields.
This causes a few api's to fail sensing invalid pwrst
requested.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r-- | arch/arm/plat-omap/include/plat/powerdomain.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/include/plat/powerdomain.h b/arch/arm/plat-omap/include/plat/powerdomain.h index d82b2c00d4f1..e7cc7e66e977 100644 --- a/arch/arm/plat-omap/include/plat/powerdomain.h +++ b/arch/arm/plat-omap/include/plat/powerdomain.h @@ -31,6 +31,7 @@ #define PWRDM_MAX_PWRSTS 4 /* Powerdomain allowable state bitfields */ +#define PWRSTS_ON (1 << PWRDM_POWER_ON) #define PWRSTS_OFF_ON ((1 << PWRDM_POWER_OFF) | \ (1 << PWRDM_POWER_ON)) |