Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189764
b: refs/heads/master
c: abe5b41
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Apr 12, 2010
1 parent e600467 commit 496be59
Show file tree
Hide file tree
Showing 2 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: b1cea3bab575af386618baba0db3c5fae7ce521f
refs/heads/master: abe5b417fb4a52e9510fdb5a16e722e91bf89e92
4 changes: 2 additions & 2 deletions trunk/arch/mips/lib/delay.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ EXPORT_SYMBOL(__delay);

void __udelay(unsigned long us)
{
unsigned int lpj = current_cpu_data.udelay_val;
unsigned int lpj = raw_current_cpu_data.udelay_val;

__delay((us * 0x000010c7ull * HZ * lpj) >> 32);
}
EXPORT_SYMBOL(__udelay);

void __ndelay(unsigned long ns)
{
unsigned int lpj = current_cpu_data.udelay_val;
unsigned int lpj = raw_current_cpu_data.udelay_val;

__delay((ns * 0x00000005ull * HZ * lpj) >> 32);
}
Expand Down

0 comments on commit 496be59

Please sign in to comment.