staging: csr: fix indentation code style issue in csr_framework_ext.c
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>
This commit is contained in:
parent
47d8994bc1
commit
ea0ff35352
1 changed files with 8 additions and 8 deletions
|
@ -1,10 +1,10 @@
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
|
||||||
(c) Cambridge Silicon Radio Limited 2010
|
(c) Cambridge Silicon Radio Limited 2010
|
||||||
All rights reserved and confidential information of CSR
|
All rights reserved and confidential information of CSR
|
||||||
|
|
||||||
Refer to LICENSE.txt included with this source for details
|
Refer to LICENSE.txt included with this source for details
|
||||||
on the license terms.
|
on the license terms.
|
||||||
|
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
|
@ -31,10 +31,10 @@
|
||||||
*----------------------------------------------------------------------------*/
|
*----------------------------------------------------------------------------*/
|
||||||
void CsrThreadSleep(u16 sleepTimeInMs)
|
void CsrThreadSleep(u16 sleepTimeInMs)
|
||||||
{
|
{
|
||||||
unsigned long t;
|
unsigned long t;
|
||||||
|
|
||||||
/* Convert t in ms to jiffies and round up */
|
/* Convert t in ms to jiffies and round up */
|
||||||
t = ((sleepTimeInMs * HZ) + 999) / 1000;
|
t = ((sleepTimeInMs * HZ) + 999) / 1000;
|
||||||
schedule_timeout_uninterruptible(t);
|
schedule_timeout_uninterruptible(t);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(CsrThreadSleep);
|
EXPORT_SYMBOL_GPL(CsrThreadSleep);
|
||||||
|
|
Loading…
Add table
Reference in a new issue