Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 223341
b: refs/heads/master
c: 5878fc9
h: refs/heads/master
i:
  223339: 2e9e221
v: v3
  • Loading branch information
Kevin Cernekee authored and Ralf Baechle committed Dec 16, 2010
1 parent 3a93391 commit 90a065f
Show file tree
Hide file tree
Showing 2 changed files with 2 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: 190fca3e40a65303eac35ac4fbae4f1f1342431c
refs/heads/master: 5878fc936aebf592cca418ca50773cd578f7daf4
2 changes: 1 addition & 1 deletion trunk/arch/mips/kernel/cevt-r4k.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static int mips_next_event(unsigned long delta,
cnt = read_c0_count();
cnt += delta;
write_c0_compare(cnt);
res = ((int)(read_c0_count() - cnt) > 0) ? -ETIME : 0;
res = ((int)(read_c0_count() - cnt) >= 0) ? -ETIME : 0;
return res;
}

Expand Down

0 comments on commit 90a065f

Please sign in to comment.