Kevin Hilman <khilman@xxxxxxxxxxxxxxxxxxx> writes: > Nishanth Menon <nm@xxxxxx> writes: > >> Currently omap3_cpuidle_update_states makes whole sale decision >> on which C states to update based on enable_off_mode variable >> Instead, achieve the same functionality by independently providing >> mpu and core deepest states the system is allowed to achieve and >> update the idle states accordingly. >> >> Acked-by: Santosh Shilimkar <santosh.shilimkar@xxxxxx> >> Acked-by: Jean Pihet <j-pihet@xxxxxx> >> >> Signed-off-by: Nishanth Menon <nm@xxxxxx> > > This patch doesnt' compile with CPUidle enabled. > > You missed one other caller of the update_states function inside > cpuidle34xx.c which is only there when CONFIG_CPU_IDLE=y > Something like the following folded into this patch makes it compile and work as before. If this looks OK to you, I'll fold it in. Kevin diff --git a/arch/arm/mach-omap2/cpuidle34xx.c b/arch/arm/mach-omap2/cpuidle34xx index ab4c862..0fb619c 100644 --- a/arch/arm/mach-omap2/cpuidle34xx.c +++ b/arch/arm/mach-omap2/cpuidle34xx.c @@ -517,7 +517,10 @@ int __init omap3_idle_init(void) return -EINVAL; dev->state_count = count; - omap3_cpuidle_update_states(); + if (enable_off_mode) + omap3_cpuidle_update_states(PWRDM_POWER_OFF, PWRDM_POWER_OFF); + else + omap3_cpuidle_update_states(PWRDM_POWER_RET, PWRDM_POWER_RET); if (cpuidle_register_device(dev)) { printk(KERN_ERR "%s: CPUidle register device failed\n", -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html