Make suggested modification from checkpatch in reference
to CHECK: Alignment should match open parenthesis

Signed-off-by: Walt Feasel <waltfea...@gmail.com>
---
 drivers/staging/xgifb/vb_setmode.c | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

diff --git a/drivers/staging/xgifb/vb_setmode.c 
b/drivers/staging/xgifb/vb_setmode.c
index 5d1d478..2d7468a 100644
--- a/drivers/staging/xgifb/vb_setmode.c
+++ b/drivers/staging/xgifb/vb_setmode.c
@@ -1602,9 +1602,9 @@ static void XGI_SetLVDSRegs(unsigned short ModeIdIndex,
        tempax = ((tempbx >> 8) & 0xff) << 3;
        tempax |= (unsigned short)((temp3 >> 8) & 0x07);
        xgifb_reg_set(pVBInfo->Part1Port, 0x20,
-                       (unsigned short)(tempax & 0xff));
+                     (unsigned short)(tempax & 0xff));
        xgifb_reg_set(pVBInfo->Part1Port, 0x21,
-                       (unsigned short)(tempbx & 0xff));
+                     (unsigned short)(tempbx & 0xff));
 
        temp3 >>= 16;
 
@@ -1612,9 +1612,9 @@ static void XGI_SetLVDSRegs(unsigned short ModeIdIndex,
                temp3 >>= 1;
 
        xgifb_reg_set(pVBInfo->Part1Port, 0x22,
-                       (unsigned short)((temp3 >> 8) & 0xff));
+                     (unsigned short)((temp3 >> 8) & 0xff));
        xgifb_reg_set(pVBInfo->Part1Port, 0x23,
-                       (unsigned short)(temp3 & 0xff));
+                     (unsigned short)(temp3 & 0xff));
 }
 
 /* --------------------------------------------------------------------- */
@@ -1624,7 +1624,7 @@ static void XGI_SetLVDSRegs(unsigned short ModeIdIndex,
 /* Description : */
 /* --------------------------------------------------------------------- */
 static void XGI_GetLCDVCLKPtr(unsigned char *di_0, unsigned char *di_1,
-               struct vb_device_info *pVBInfo)
+                             struct vb_device_info *pVBInfo)
 {
        unsigned short index;
 
@@ -1642,7 +1642,8 @@ static void XGI_GetLCDVCLKPtr(unsigned char *di_0, 
unsigned char *di_1,
 }
 
 static unsigned char XGI_GetVCLKPtr(unsigned short RefreshRateTableIndex,
-               unsigned short ModeIdIndex, struct vb_device_info *pVBInfo)
+                                   unsigned short ModeIdIndex,
+                                   struct vb_device_info *pVBInfo)
 {
        unsigned short index, modeflag;
        unsigned char tempal;
@@ -1704,7 +1705,7 @@ static unsigned char XGI_GetVCLKPtr(unsigned short 
RefreshRateTableIndex,
 }
 
 static void XGI_GetVCLKLen(unsigned char tempal, unsigned char *di_0,
-               unsigned char *di_1, struct vb_device_info *pVBInfo)
+                          unsigned char *di_1, struct vb_device_info *pVBInfo)
 {
        if (pVBInfo->VBType & (VB_SIS301 | VB_SIS301B | VB_SIS302B
                        | VB_SIS301LV | VB_SIS302LV | VB_XGI301C)) {
@@ -1720,8 +1721,8 @@ static void XGI_GetVCLKLen(unsigned char tempal, unsigned 
char *di_0,
 }
 
 static void XGI_SetCRT2ECLK(unsigned short ModeIdIndex,
-               unsigned short RefreshRateTableIndex,
-               struct vb_device_info *pVBInfo)
+                           unsigned short RefreshRateTableIndex,
+                           struct vb_device_info *pVBInfo)
 {
        unsigned char di_0, di_1, tempal;
        int i;
@@ -1732,7 +1733,7 @@ static void XGI_SetCRT2ECLK(unsigned short ModeIdIndex,
 
        for (i = 0; i < 4; i++) {
                xgifb_reg_and_or(pVBInfo->P3d4, 0x31, ~0x30,
-                               (unsigned short)(0x10 * i));
+                                (unsigned short)(0x10 * i));
                if (!(pVBInfo->VBInfo & XGI_SetCRT2ToLCDA) &&
                    !(pVBInfo->VBInfo & SetInSlaveMode)) {
                        xgifb_reg_set(pVBInfo->P3c4, 0x2e, di_0);
@@ -1871,7 +1872,7 @@ void XGI_GetVBType(struct vb_device_info *pVBInfo)
 }
 
 static void XGI_GetVBInfo(unsigned short ModeIdIndex,
-               struct vb_device_info *pVBInfo)
+                         struct vb_device_info *pVBInfo)
 {
        unsigned short tempax, push, tempbx, temp, modeflag;
 
@@ -1997,7 +1998,7 @@ static void XGI_GetVBInfo(unsigned short ModeIdIndex,
 }
 
 static void XGI_GetTVInfo(unsigned short ModeIdIndex,
-               struct vb_device_info *pVBInfo)
+                         struct vb_device_info *pVBInfo)
 {
        unsigned short tempbx = 0, resinfo = 0, modeflag, index1;
 
-- 
2.1.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to