diff options
author | Hamish Guthrie <hcg@openwrt.org> | 2009-06-10 15:18:25 +0000 |
---|---|---|
committer | Hamish Guthrie <hcg@openwrt.org> | 2009-06-10 15:18:25 +0000 |
commit | 5080699ba187ec1ac42b16b7ad232c5623a6f30c (patch) | |
tree | 704f0d5e5bf1c2fe7e8b88b7bbbb48064b94d247 /target/linux/generic-2.6 | |
parent | d8ae2620026b9790e92dc18c6a5a3376be9b95e3 (diff) | |
download | upstream-5080699ba187ec1ac42b16b7ad232c5623a6f30c.tar.gz upstream-5080699ba187ec1ac42b16b7ad232c5623a6f30c.tar.bz2 upstream-5080699ba187ec1ac42b16b7ad232c5623a6f30c.zip |
Cleaned up whitespace in patch 024-mips_delay.patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16404 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.30/024-mips_delay.patch | 12 |
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); |