ARM: S3C64XX: Reduce residency requirement for cpuidle WFI mode

Entering and leaving WFI is really cheap so there's no reason to have much
of a residency requirement for the state. Lower it to 1ms.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
Mark Brown 2011-12-30 09:41:56 +09:00 committed by Kukjin Kim
parent 2374714507
commit 90ca2979ed
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ static struct cpuidle_state s3c64xx_cpuidle_set[] = {
[0] = {
.enter = s3c64xx_enter_idle,
.exit_latency = 1,
.target_residency = 100000,
.target_residency = 1,
.flags = CPUIDLE_FLAG_TIME_VALID,
.name = "IDLE",
.desc = "System active, ARM gated",