Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7523
b: refs/heads/master
c: 7691d93
h: refs/heads/master
i:
  7521: 1305182
  7519: 9f779d5
v: v3
  • Loading branch information
Adam Brooks authored and Russell King committed Sep 7, 2005
1 parent 69088ac commit 8a2141d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: fd6480f27e38f86ddea78eb5b46db249dfd09f17
refs/heads/master: 7691d931aa55409ae3339d541ec0b87ab0a2adae
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-iop3xx/iop321-time.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static unsigned long iop321_gettimeoffset(void)
/*
* Now convert them to usec.
*/
usec = (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH;
usec = (unsigned long)(elapsed / (CLOCK_TICK_RATE/1000000));

return usec;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-iop3xx/iop331-time.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static unsigned long iop331_gettimeoffset(void)
/*
* Now convert them to usec.
*/
usec = (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH;
usec = (unsigned long)(elapsed / (CLOCK_TICK_RATE/1000000));

return usec;
}
Expand Down

0 comments on commit 8a2141d

Please sign in to comment.