Cleaned up whitespace in patch 024-mips_delay.patch
[openwrt/svn-archive/archive.git] / target / linux / generic-2.6 / patches-2.6.30 / 024-mips_delay.patch
index 284f34610f3d14b66f8307575c6f960747a3a458..0d22636ab683abf57b5e48da8bdf5a66aecd4149 100644 (file)
@@ -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);