[PATCH 1/2] Staging: sm750fb: replace spaces by tabs

2015-06-15 Thread Dighe, Niranjan (N.)
From: Niranjan Dighe 

This patch replaces spaces by tabs at the start of the line and in
between variable declarations.

Signed-off-by: Niranjan Dighe 
---
 drivers/staging/sm750fb/ddk750_dvi.h |   60 +-
 1 file changed, 30 insertions(+), 30 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_dvi.h 
b/drivers/staging/sm750fb/ddk750_dvi.h
index 50bcec2..c8d31f3 100644
--- a/drivers/staging/sm750fb/ddk750_dvi.h
+++ b/drivers/staging/sm750fb/ddk750_dvi.h
@@ -4,16 +4,16 @@
 /* dvi chip stuffs structros */
 
 typedef long (*PFN_DVICTRL_INIT)(
-unsigned char edgeSelect,
-unsigned char busSelect,
-unsigned char dualEdgeClkSelect,
-unsigned char hsyncEnable,
-unsigned char vsyncEnable,
-unsigned char deskewEnable,
-unsigned char deskewSetting,
-unsigned char continuousSyncEnable,
-unsigned char pllFilterEnable,
-unsigned char pllFilterValue);
+   unsigned char edgeSelect,
+   unsigned char busSelect,
+   unsigned char dualEdgeClkSelect,
+   unsigned char hsyncEnable,
+   unsigned char vsyncEnable,
+   unsigned char deskewEnable,
+   unsigned char deskewSetting,
+   unsigned char continuousSyncEnable,
+   unsigned char pllFilterEnable,
+   unsigned char pllFilterValue);
 typedef void (*PFN_DVICTRL_RESETCHIP)(void);
 typedef char* (*PFN_DVICTRL_GETCHIPSTRING)(void);
 typedef unsigned short (*PFN_DVICTRL_GETVENDORID)(void);
@@ -29,16 +29,16 @@ typedef void (*PFN_DVICTRL_CLEARINTERRUPT)(void);
 /* Structure to hold all the function pointer to the DVI Controller. */
 typedef struct _dvi_ctrl_device_t
 {
-PFN_DVICTRL_INITpfnInit;
-PFN_DVICTRL_RESETCHIP   pfnResetChip;
-PFN_DVICTRL_GETCHIPSTRING   pfnGetChipString;
-PFN_DVICTRL_GETVENDORID pfnGetVendorId;
-PFN_DVICTRL_GETDEVICEID pfnGetDeviceId;
-PFN_DVICTRL_SETPOWERpfnSetPower;
-PFN_DVICTRL_HOTPLUGDETECTIONpfnEnableHotPlugDetection;
-PFN_DVICTRL_ISCONNECTED pfnIsConnected;
-PFN_DVICTRL_CHECKINTERRUPT  pfnCheckInterrupt;
-PFN_DVICTRL_CLEARINTERRUPT  pfnClearInterrupt;
+   PFN_DVICTRL_INITpfnInit;
+   PFN_DVICTRL_RESETCHIP   pfnResetChip;
+   PFN_DVICTRL_GETCHIPSTRING   pfnGetChipString;
+   PFN_DVICTRL_GETVENDORID pfnGetVendorId;
+   PFN_DVICTRL_GETDEVICEID pfnGetDeviceId;
+   PFN_DVICTRL_SETPOWERpfnSetPower;
+   PFN_DVICTRL_HOTPLUGDETECTIONpfnEnableHotPlugDetection;
+   PFN_DVICTRL_ISCONNECTED pfnIsConnected;
+   PFN_DVICTRL_CHECKINTERRUPT  pfnCheckInterrupt;
+   PFN_DVICTRL_CLEARINTERRUPT  pfnClearInterrupt;
 } dvi_ctrl_device_t;
 #define DVI_CTRL_SII164
 
@@ -46,16 +46,16 @@ typedef struct _dvi_ctrl_device_t
 
 /* dvi functions prototype */
 int dviInit(
-unsigned char edgeSelect,
-unsigned char busSelect,
-unsigned char dualEdgeClkSelect,
-unsigned char hsyncEnable,
-unsigned char vsyncEnable,
-unsigned char deskewEnable,
-unsigned char deskewSetting,
-unsigned char continuousSyncEnable,
-unsigned char pllFilterEnable,
-unsigned char pllFilterValue
+   unsigned char edgeSelect,
+   unsigned char busSelect,
+   unsigned char dualEdgeClkSelect,
+   unsigned char hsyncEnable,
+   unsigned char vsyncEnable,
+   unsigned char deskewEnable,
+   unsigned char deskewSetting,
+   unsigned char continuousSyncEnable,
+   unsigned char pllFilterEnable,
+   unsigned char pllFilterValue
 );
 
 unsigned short dviGetVendorID(void);
-- 
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 1/2] Staging: sm750fb: replace spaces by tabs

2015-06-15 Thread Dighe, Niranjan (N.)
From: Niranjan Dighe ndi...@visteon.com

This patch replaces spaces by tabs at the start of the line and in
between variable declarations.

Signed-off-by: Niranjan Dighe ndi...@visteon.com
---
 drivers/staging/sm750fb/ddk750_dvi.h |   60 +-
 1 file changed, 30 insertions(+), 30 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_dvi.h 
b/drivers/staging/sm750fb/ddk750_dvi.h
index 50bcec2..c8d31f3 100644
--- a/drivers/staging/sm750fb/ddk750_dvi.h
+++ b/drivers/staging/sm750fb/ddk750_dvi.h
@@ -4,16 +4,16 @@
 /* dvi chip stuffs structros */
 
 typedef long (*PFN_DVICTRL_INIT)(
-unsigned char edgeSelect,
-unsigned char busSelect,
-unsigned char dualEdgeClkSelect,
-unsigned char hsyncEnable,
-unsigned char vsyncEnable,
-unsigned char deskewEnable,
-unsigned char deskewSetting,
-unsigned char continuousSyncEnable,
-unsigned char pllFilterEnable,
-unsigned char pllFilterValue);
+   unsigned char edgeSelect,
+   unsigned char busSelect,
+   unsigned char dualEdgeClkSelect,
+   unsigned char hsyncEnable,
+   unsigned char vsyncEnable,
+   unsigned char deskewEnable,
+   unsigned char deskewSetting,
+   unsigned char continuousSyncEnable,
+   unsigned char pllFilterEnable,
+   unsigned char pllFilterValue);
 typedef void (*PFN_DVICTRL_RESETCHIP)(void);
 typedef char* (*PFN_DVICTRL_GETCHIPSTRING)(void);
 typedef unsigned short (*PFN_DVICTRL_GETVENDORID)(void);
@@ -29,16 +29,16 @@ typedef void (*PFN_DVICTRL_CLEARINTERRUPT)(void);
 /* Structure to hold all the function pointer to the DVI Controller. */
 typedef struct _dvi_ctrl_device_t
 {
-PFN_DVICTRL_INITpfnInit;
-PFN_DVICTRL_RESETCHIP   pfnResetChip;
-PFN_DVICTRL_GETCHIPSTRING   pfnGetChipString;
-PFN_DVICTRL_GETVENDORID pfnGetVendorId;
-PFN_DVICTRL_GETDEVICEID pfnGetDeviceId;
-PFN_DVICTRL_SETPOWERpfnSetPower;
-PFN_DVICTRL_HOTPLUGDETECTIONpfnEnableHotPlugDetection;
-PFN_DVICTRL_ISCONNECTED pfnIsConnected;
-PFN_DVICTRL_CHECKINTERRUPT  pfnCheckInterrupt;
-PFN_DVICTRL_CLEARINTERRUPT  pfnClearInterrupt;
+   PFN_DVICTRL_INITpfnInit;
+   PFN_DVICTRL_RESETCHIP   pfnResetChip;
+   PFN_DVICTRL_GETCHIPSTRING   pfnGetChipString;
+   PFN_DVICTRL_GETVENDORID pfnGetVendorId;
+   PFN_DVICTRL_GETDEVICEID pfnGetDeviceId;
+   PFN_DVICTRL_SETPOWERpfnSetPower;
+   PFN_DVICTRL_HOTPLUGDETECTIONpfnEnableHotPlugDetection;
+   PFN_DVICTRL_ISCONNECTED pfnIsConnected;
+   PFN_DVICTRL_CHECKINTERRUPT  pfnCheckInterrupt;
+   PFN_DVICTRL_CLEARINTERRUPT  pfnClearInterrupt;
 } dvi_ctrl_device_t;
 #define DVI_CTRL_SII164
 
@@ -46,16 +46,16 @@ typedef struct _dvi_ctrl_device_t
 
 /* dvi functions prototype */
 int dviInit(
-unsigned char edgeSelect,
-unsigned char busSelect,
-unsigned char dualEdgeClkSelect,
-unsigned char hsyncEnable,
-unsigned char vsyncEnable,
-unsigned char deskewEnable,
-unsigned char deskewSetting,
-unsigned char continuousSyncEnable,
-unsigned char pllFilterEnable,
-unsigned char pllFilterValue
+   unsigned char edgeSelect,
+   unsigned char busSelect,
+   unsigned char dualEdgeClkSelect,
+   unsigned char hsyncEnable,
+   unsigned char vsyncEnable,
+   unsigned char deskewEnable,
+   unsigned char deskewSetting,
+   unsigned char continuousSyncEnable,
+   unsigned char pllFilterEnable,
+   unsigned char pllFilterValue
 );
 
 unsigned short dviGetVendorID(void);
-- 
1.7.9.5
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/