Message ID | 1342704392-23657-7-git-send-email-t-kristo@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hello. On 07/19/2012 05:26 PM, Tero Kristo wrote: > From: Rajendra Nayak <rnayak@ti.com> > Remove the FIXME's in the suspend sequence since > we now intend to support system level RET support. > Signed-off-by: Rajendra Nayak <rnayak@ti.com> > Signed-off-by: Tero Kristo <t-kristo@ti.com> > [Jean Pihet <j-pihet@ti.com>: ported on top of the functional power > states] Shouldn't Jean also have signed off? > Reviewed-by: Santosh Shilimkar <santosh.shilimkar@ti.com> WBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi! On Thu, Jul 19, 2012 at 4:16 PM, Sergei Shtylyov <sshtylyov@mvista.com> wrote: > Hello. > > On 07/19/2012 05:26 PM, Tero Kristo wrote: > >> From: Rajendra Nayak <rnayak@ti.com> > >> Remove the FIXME's in the suspend sequence since >> we now intend to support system level RET support. > >> Signed-off-by: Rajendra Nayak <rnayak@ti.com> >> Signed-off-by: Tero Kristo <t-kristo@ti.com> >> [Jean Pihet <j-pihet@ti.com>: ported on top of the functional power >> states] > > Shouldn't Jean also have signed off? Sure! I am OK with this change, feel free to add: Acked-by: Jean Pihet <j-pihet@ti.com> Regards, Jean > >> Reviewed-by: Santosh Shilimkar <santosh.shilimkar@ti.com> > > WBR, Sergei > -- > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Tero Kristo <t-kristo@ti.com> writes: > From: Rajendra Nayak <rnayak@ti.com> > > Remove the FIXME's in the suspend sequence since > we now intend to support system level RET support. > > Signed-off-by: Rajendra Nayak <rnayak@ti.com> > Signed-off-by: Tero Kristo <t-kristo@ti.com> > [Jean Pihet <j-pihet@ti.com>: ported on top of the functional power > states] > Reviewed-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Acked-by: Kevin Hilman <khilman@ti.com> Paul, go ahead and queue this one with the others. Kevin -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/mach-omap2/pm44xx.c b/arch/arm/mach-omap2/pm44xx.c index 3a484b1..1e845e8 100644 --- a/arch/arm/mach-omap2/pm44xx.c +++ b/arch/arm/mach-omap2/pm44xx.c @@ -97,19 +97,15 @@ static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused) if (!strncmp(pwrdm->name, "cpu", 3)) return 0; - /* - * FIXME: Remove this check when core retention is supported - * Only MPUSS power domain is added in the list. - */ - if (strcmp(pwrdm->name, "mpu_pwrdm")) - return 0; pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC); if (!pwrst) return -ENOMEM; pwrst->pwrdm = pwrdm; - pwrst->next_state = PWRDM_FUNC_PWRST_CSWR; + pwrst->next_state = pwrdm_get_achievable_func_pwrst( + pwrdm, + PWRDM_FUNC_PWRST_CSWR); list_add(&pwrst->node, &pwrst_list); return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);