aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHamish Guthrie <hcg@openwrt.org>2009-06-10 15:18:25 +0000
committerHamish Guthrie <hcg@openwrt.org>2009-06-10 15:18:25 +0000
commitc9eb4469e09e6b935e2c1643686eef5c7c0db8c4 (patch)
tree08c6d9d6b5a29c2c416a2fbeb8bf00c55bd6ec10
parent0d442a08b6c84f84088d6d3f1ef7bb5feeb42c0d (diff)
downloadupstream-c9eb4469e09e6b935e2c1643686eef5c7c0db8c4.tar.gz
upstream-c9eb4469e09e6b935e2c1643686eef5c7c0db8c4.tar.bz2
upstream-c9eb4469e09e6b935e2c1643686eef5c7c0db8c4.zip
Cleaned up whitespace in patch 024-mips_delay.patch
SVN-Revision: 16404
-rw-r--r--target/linux/generic-2.6/patches-2.6.30/024-mips_delay.patch12
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.30/024-mips_delay.patch b/target/linux/generic-2.6/patches-2.6.30/024-mips_delay.patch
index 284f34610f..0d22636ab6 100644
--- a/target/linux/generic-2.6/patches-2.6.30/024-mips_delay.patch
+++ b/target/linux/generic-2.6/patches-2.6.30/024-mips_delay.patch
@@ -12,19 +12,19 @@ index f69c6b5..6b3b1de 100644
+++ b/arch/mips/lib/delay.c
@@ -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 * 0x000010c7ull * HZ * lpj) >> 32);
+- __delay((us * 0x000010c7 * HZ * lpj) >> 32);
++ __delay((us * 0x000010c7ull * HZ * lpj) >> 32);
}
EXPORT_SYMBOL(__udelay);
@@ -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((ns * 0x00000005ull * HZ * lpj) >> 32);
+- __delay((us * 0x00000005 * HZ * lpj) >> 32);
++ __delay((ns * 0x00000005ull * HZ * lpj) >> 32);
}
EXPORT_SYMBOL(__ndelay);