Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 276705
b: refs/heads/master
c: e248cd5
h: refs/heads/master
i:
  276703: 6eb2827
v: v3
  • Loading branch information
Amit Daniel Kachhap authored and Kukjin Kim committed Dec 8, 2011
1 parent 70d72be commit a1af2fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: de611dd4078499d5aa5ae9655652687ae630585f
refs/heads/master: e248cd5d5f1c28c82781d4122dddd1b7c3d7b46f
6 changes: 5 additions & 1 deletion trunk/arch/arm/mach-exynos/mct.c
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,13 @@ int __cpuinit local_timer_setup(struct clock_event_device *evt)

void local_timer_stop(struct clock_event_device *evt)
{
unsigned int cpu = smp_processor_id();
evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
if (mct_int_type == MCT_INT_SPI)
disable_irq(evt->irq);
if (cpu == 0)
remove_irq(evt->irq, &mct_tick0_event_irq);
else
remove_irq(evt->irq, &mct_tick1_event_irq);
else
disable_percpu_irq(IRQ_MCT_LOCALTIMER);
}
Expand Down

0 comments on commit a1af2fb

Please sign in to comment.