]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
staging: csr: fix indentation code style issue in csr_framework_ext.c
authorDavis Abubakr-Sadik Nii Nai <dwa2pac@gmail.com>
Fri, 7 Jun 2013 09:54:51 +0000 (09:54 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 9 Jun 2013 05:06:05 +0000 (22:06 -0700)
This is a patch to csr_framework.c that fixes indentation style issues
found by the checkpatch.pl tool.

Signed-off-by: Davis Abubakr-Sadik Nii Nai <dwa2pac@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/csr/csr_framework_ext.c

index 2aabb6c6b0af0fc6e9fe17cc47a9bf3601ee6e05..98122bce1427d2ed40f6602d5e40e20460c6dedd 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
 
-            (c) Cambridge Silicon Radio Limited 2010
-            All rights reserved and confidential information of CSR
+               (c) Cambridge Silicon Radio Limited 2010
+               All rights reserved and confidential information of CSR
 
-            Refer to LICENSE.txt included with this source for details
-            on the license terms.
+               Refer to LICENSE.txt included with this source for details
+               on the license terms.
 
 *****************************************************************************/
 
  *----------------------------------------------------------------------------*/
 void CsrThreadSleep(u16 sleepTimeInMs)
 {
-    unsigned long t;
+       unsigned long t;
 
-    /* Convert t in ms to jiffies and round up */
-    t = ((sleepTimeInMs * HZ) + 999) / 1000;
-    schedule_timeout_uninterruptible(t);
+       /* Convert t in ms to jiffies and round up */
+       t = ((sleepTimeInMs * HZ) + 999) / 1000;
+       schedule_timeout_uninterruptible(t);
 }
 EXPORT_SYMBOL_GPL(CsrThreadSleep);