1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-28 00:39:23 +02:00

Cleaned up whitespace in patch 024-mips_delay.patch

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16404 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
hcg 2009-06-10 15:18:25 +00:00
parent f2f58ad188
commit 713c08cb30

View File

@ -12,19 +12,19 @@ index f69c6b5..6b3b1de 100644
+++ b/arch/mips/lib/delay.c +++ b/arch/mips/lib/delay.c
@@ -43,7 +43,7 @@ void __udelay(unsigned long us) @@ -43,7 +43,7 @@ void __udelay(unsigned long us)
{ {
unsigned int lpj = current_cpu_data.udelay_val; unsigned int lpj = current_cpu_data.udelay_val;
- __delay((us * 0x000010c7 * HZ * lpj) >> 32); - __delay((us * 0x000010c7 * HZ * lpj) >> 32);
+ __delay((us * 0x000010c7ull * HZ * lpj) >> 32); + __delay((us * 0x000010c7ull * HZ * lpj) >> 32);
} }
EXPORT_SYMBOL(__udelay); EXPORT_SYMBOL(__udelay);
@@ -51,6 +51,6 @@ void __ndelay(unsigned long ns) @@ -51,6 +51,6 @@ void __ndelay(unsigned long ns)
{ {
unsigned int lpj = current_cpu_data.udelay_val; unsigned int lpj = current_cpu_data.udelay_val;
- __delay((us * 0x00000005 * HZ * lpj) >> 32); - __delay((us * 0x00000005 * HZ * lpj) >> 32);
+ __delay((ns * 0x00000005ull * HZ * lpj) >> 32); + __delay((ns * 0x00000005ull * HZ * lpj) >> 32);
} }
EXPORT_SYMBOL(__ndelay); EXPORT_SYMBOL(__ndelay);