]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: sm750fb: Replace spaces with tabs at the start of lines
authorIsaac Assegai <isaac.a.travers@gmail.com>
Mon, 25 May 2015 05:48:42 +0000 (22:48 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 31 May 2015 03:04:35 +0000 (12:04 +0900)
Replace spaces at the start of lines with tabs to rectify
the following warning:
WARNING: please, no spaces at the start of a line

Signed-off-by: Isaac Assegai <isaac.a.travers@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/ddk750_chip.c
drivers/staging/sm750fb/ddk750_chip.h

index 3cb860ce60cc893828340b423bfe8bb6fcf9ed03..8b47c1bfc401c898fa7d59df339fa7ce1473e04f 100644 (file)
@@ -616,7 +616,7 @@ unsigned int formatPllReg(pll_value_t *pPLL)
        | FIELD_VALUE(0, PANEL_PLL_CTRL, N,      pPLL->N)
        | FIELD_VALUE(0, PANEL_PLL_CTRL, M,      pPLL->M);
 
-    return ulPllReg;
+       return ulPllReg;
 }
 
 
index 04cb0d55924583ca1cf249672869d940422a48c4..83821de68f407e2ee87924368c691369892a4bce 100644 (file)
 /* This is all the chips recognized by this library */
 typedef enum _logical_chip_type_t
 {
-    SM_UNKNOWN,
-    SM718,
-    SM750,
-    SM750LE,
+       SM_UNKNOWN,
+       SM718,
+       SM750,
+       SM750LE,
 }
 logical_chip_type_t;
 
@@ -30,42 +30,47 @@ clock_type_t;
 
 typedef struct _pll_value_t
 {
-    clock_type_t clockType;
-    unsigned long inputFreq; /* Input clock frequency to the PLL */
+       clock_type_t clockType;
+       unsigned long inputFreq; /* Input clock frequency to the PLL */
 
-    /* Use this when clockType = PANEL_PLL */
-    unsigned long M;
-    unsigned long N;
-    unsigned long OD;
-    unsigned long POD;
+       /* Use this when clockType = PANEL_PLL */
+       unsigned long M;
+       unsigned long N;
+       unsigned long OD;
+       unsigned long POD;
 }
 pll_value_t;
 
 /* input struct to initChipParam() function */
 typedef struct _initchip_param_t
 {
-    unsigned short powerMode;    /* Use power mode 0 or 1 */
-    unsigned short chipClock;    /* Speed of main chip clock in MHz unit
-                                    0 = keep the current clock setting
-                                    Others = the new main chip clock
-                                  */
-    unsigned short memClock;     /* Speed of memory clock in MHz unit
-                                    0 = keep the current clock setting
-                                    Others = the new memory clock
-                                  */
-    unsigned short masterClock;  /* Speed of master clock in MHz unit
-                                    0 = keep the current clock setting
-                                    Others = the new master clock
-                                  */
-    unsigned short setAllEngOff; /* 0 = leave all engine state untouched.
-                                    1 = make sure they are off: 2D, Overlay,
-                                    video alpha, alpha, hardware cursors
-                                 */
-    unsigned char resetMemory;   /* 0 = Do not reset the memory controller
-                                    1 = Reset the memory controller
-                                  */
+       unsigned short powerMode;    /* Use power mode 0 or 1 */
+       unsigned short chipClock;    /**
+                                     * Speed of main chip clock in MHz unit
+                                     * 0 = keep the current clock setting
+                                     * Others = the new main chip clock
+                                     */
+       unsigned short memClock;     /**
+                                     * Speed of memory clock in MHz unit
+                                     * 0 = keep the current clock setting
+                                     * Others = the new memory clock
+                                     */
+       unsigned short masterClock;  /**
+                                     * Speed of master clock in MHz unit
+                                     * 0 = keep the current clock setting
+                                     * Others = the new master clock
+                                     */
+       unsigned short setAllEngOff; /**
+                                     * 0 = leave all engine state untouched.
+                                     * 1 = make sure they are off: 2D, Overlay,
+                                     * video alpha, alpha, hardware cursors
+                                     */
+       unsigned char resetMemory;   /**
+                                     * 0 = Do not reset the memory controller
+                                     * 1 = Reset the memory controller
+                                     */
 
-    /* More initialization parameter can be added if needed */
+       /* More initialization parameter can be added if needed */
 }
 initchip_param_t;