summaryrefslogtreecommitdiff
path: root/drivers/staging/csr/csr_time.h
diff options
context:
space:
mode:
authorSangho Yi <antiroot@gmail.com>2012-10-14 14:50:01 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-10-22 20:53:09 (GMT)
commit717757255665a1aae58752f1d8cf7625b6fe9d9e (patch)
tree3707e0a2039cea81eff1380e1b3bbeae4e8439d0 /drivers/staging/csr/csr_time.h
parent0567e1ec43c60e449673bb391edd05e5e49398be (diff)
downloadlinux-fsl-qoriq-717757255665a1aae58752f1d8cf7625b6fe9d9e.tar.xz
Staging: CSR: csr_time.h: fixed indentation warnings based on coding style
I fixed the indentation warnings on csr_time.h. Signed-off-by: Sangho Yi <antiroot@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/csr/csr_time.h')
-rw-r--r--drivers/staging/csr/csr_time.h63
1 files changed, 32 insertions, 31 deletions
diff --git a/drivers/staging/csr/csr_time.h b/drivers/staging/csr/csr_time.h
index 2a45f3e..7ded6dd 100644
--- a/drivers/staging/csr/csr_time.h
+++ b/drivers/staging/csr/csr_time.h
@@ -2,11 +2,11 @@
#define CSR_TIME_H__
/*****************************************************************************
- (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.
*****************************************************************************/
@@ -18,13 +18,13 @@ extern "C" {
/*******************************************************************************
- NAME
- CsrTime
+NAME
+ CsrTime
- DESCRIPTION
- Type to hold a value describing the current system time, which is a
- measure of time elapsed since some arbitrarily defined fixed time
- reference, usually associated with system startup.
+DESCRIPTION
+ Type to hold a value describing the current system time, which is a
+ measure of time elapsed since some arbitrarily defined fixed time
+ reference, usually associated with system startup.
*******************************************************************************/
typedef u32 CsrTime;
@@ -32,12 +32,12 @@ typedef u32 CsrTime;
/*******************************************************************************
- NAME
- CsrTimeUtc
+NAME
+ CsrTimeUtc
- DESCRIPTION
- Type to hold a value describing a UTC wallclock time expressed in
- seconds and milliseconds elapsed since midnight January 1st 1970.
+DESCRIPTION
+ Type to hold a value describing a UTC wallclock time expressed in
+ seconds and milliseconds elapsed since midnight January 1st 1970.
*******************************************************************************/
typedef struct
@@ -49,27 +49,28 @@ typedef struct
/*******************************************************************************
- NAME
- CsrTimeGet
+NAME
+ CsrTimeGet
- DESCRIPTION
- Returns the current system time in a low and a high part. The low part
- is expressed in microseconds. The high part is incremented when the low
- part wraps to provide an extended range.
+DESCRIPTION
+ Returns the current system time in a low and a high part. The low part
+ is expressed in microseconds. The high part is incremented when the low
+ part wraps to provide an extended range.
- The caller may provide a NULL pointer as the high parameter. In this case
- the function just returns the low part and ignores the high parameter.
+ The caller may provide a NULL pointer as the high parameter.
+ In this case the function just returns the low part and ignores the
+ high parameter.
- Although the time is expressed in microseconds the actual resolution is
- platform dependent and can be less. It is recommended that the
- resolution is at least 10 milliseconds.
+ Although the time is expressed in microseconds the actual resolution is
+ platform dependent and can be less. It is recommended that the
+ resolution is at least 10 milliseconds.
- PARAMETERS
- high - Pointer to variable that will receive the high part of the
- current system time. Passing NULL is valid.
+PARAMETERS
+ high - Pointer to variable that will receive the high part of the
+ current system time. Passing NULL is valid.
- RETURNS
- Low part of current system time in microseconds.
+RETURNS
+ Low part of current system time in microseconds.
*******************************************************************************/
CsrTime CsrTimeGet(CsrTime *high);