Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 309547
b: refs/heads/master
c: aba607d
h: refs/heads/master
i:
  309545: 748ce24
  309543: 2875472
v: v3
  • Loading branch information
Daniel Lezcano authored and Kukjin Kim committed May 17, 2012
1 parent 449f9c9 commit cab59a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4c8b20752893d58bc7b6489c0610951076b0fce8
refs/heads/master: aba607d63c71ef9b185fc7cb9637ab70a2d88491
12 changes: 1 addition & 11 deletions trunk/arch/arm/mach-s3c64xx/cpuidle.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ static int s3c64xx_enter_idle(struct cpuidle_device *dev,
struct cpuidle_driver *drv,
int index)
{
struct timeval before, after;
unsigned long tmp;
int idle_time;

local_irq_disable();
do_gettimeofday(&before);

/* Setup PWRCFG to enter idle mode */
tmp = __raw_readl(S3C64XX_PWR_CFG);
Expand All @@ -42,12 +37,6 @@ static int s3c64xx_enter_idle(struct cpuidle_device *dev,

cpu_do_idle();

do_gettimeofday(&after);
local_irq_enable();
idle_time = (after.tv_sec - before.tv_sec) * USEC_PER_SEC +
(after.tv_usec - before.tv_usec);

dev->last_residency = idle_time;
return index;
}

Expand All @@ -56,6 +45,7 @@ static DEFINE_PER_CPU(struct cpuidle_device, s3c64xx_cpuidle_device);
static struct cpuidle_driver s3c64xx_cpuidle_driver = {
.name = "s3c64xx_cpuidle",
.owner = THIS_MODULE,
.en_core_tk_irqen = 1,
.states = {
{
.enter = s3c64xx_enter_idle,
Expand Down

0 comments on commit cab59a2

Please sign in to comment.