diff options
Diffstat (limited to 'arch/mips/lib/delay.c')
| -rw-r--r-- | arch/mips/lib/delay.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/lib/delay.c b/arch/mips/lib/delay.c index 6b3b1de9dca..5995969e8c4 100644 --- a/arch/mips/lib/delay.c +++ b/arch/mips/lib/delay.c @@ -41,7 +41,7 @@ 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);  } @@ -49,7 +49,7 @@ 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);  }  |