You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
415 B
13 lines
415 B
10 years ago
|
--- a/arch/mips/ralink/cevt-rt3352.c
|
||
|
+++ b/arch/mips/ralink/cevt-rt3352.c
|
||
|
@@ -53,8 +53,7 @@ static int systick_next_event(unsigned l
|
||
10 years ago
|
|
||
|
sdev = container_of(evt, struct systick_device, dev);
|
||
|
count = ioread32(sdev->membase + SYSTICK_COUNT);
|
||
|
- count = (count + delta) % SYSTICK_FREQ;
|
||
|
- iowrite32(count, sdev->membase + SYSTICK_COMPARE);
|
||
|
+ iowrite32(count + delta, sdev->membase + SYSTICK_COMPARE);
|
||
|
|
||
|
return 0;
|
||
|
}
|