Make suggested modification from checkpatch in reference
to CHECK: No space is necessary after a cast

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

diff --git a/drivers/staging/xgifb/vb_setmode.c 
b/drivers/staging/xgifb/vb_setmode.c
index 47b59b6..769fd1b 100644
--- a/drivers/staging/xgifb/vb_setmode.c
+++ b/drivers/staging/xgifb/vb_setmode.c
@@ -796,7 +796,7 @@ static void XGI_SetCRT1Offset(unsigned short ModeNo,
        i |= temp;
        xgifb_reg_set(pVBInfo->P3c4, 0x0E, i);
 
-       temp = (unsigned char) temp2;
+       temp = (unsigned char)temp2;
        temp &= 0xFF; /* al */
        xgifb_reg_set(pVBInfo->P3d4, 0x13, temp);
 
@@ -1087,9 +1087,9 @@ static void XGI_WriteDAC(unsigned short dl,
                else
                        swap(bl, bh);
        }
-       outb((unsigned short) dh, pVBInfo->P3c9);
-       outb((unsigned short) bh, pVBInfo->P3c9);
-       outb((unsigned short) bl, pVBInfo->P3c9);
+       outb((unsigned short)dh, pVBInfo->P3c9);
+       outb((unsigned short)bh, pVBInfo->P3c9);
+       outb((unsigned short)bl, pVBInfo->P3c9);
 }
 
 static void XGI_LoadDAC(struct vb_device_info *pVBInfo)
@@ -1441,9 +1441,9 @@ static void XGI_SetLVDSRegs(unsigned short ModeIdIndex,
        tempbx >>= 3;
 
        xgifb_reg_set(pVBInfo->Part1Port, 0x16,
-                       (unsigned short) (tempbx & 0xff));
+                       (unsigned short)(tempbx & 0xff));
        xgifb_reg_set(pVBInfo->Part1Port, 0x17,
-                       (unsigned short) (tempcx & 0xff));
+                       (unsigned short)(tempcx & 0xff));
 
        tempax = pVBInfo->HT;
 
@@ -1469,7 +1469,7 @@ static void XGI_SetLVDSRegs(unsigned short ModeIdIndex,
 
        xgifb_reg_set(pVBInfo->Part1Port, 0x15, tempax);
        xgifb_reg_set(pVBInfo->Part1Port, 0x14,
-                       (unsigned short) (tempbx & 0xff));
+                       (unsigned short)(tempbx & 0xff));
 
        tempax = pVBInfo->VT;
        tempbx = LCDPtr1->LCDVDES;
@@ -1505,9 +1505,9 @@ static void XGI_SetLVDSRegs(unsigned short ModeIdIndex,
                tempcx -= tempax;
 
        xgifb_reg_set(pVBInfo->Part1Port, 0x18,
-                       (unsigned short) (tempbx & 0xff));
+                       (unsigned short)(tempbx & 0xff));
        xgifb_reg_and_or(pVBInfo->Part1Port, 0x19, ~0x0f,
-                       (unsigned short) (tempcx & 0x0f));
+                       (unsigned short)(tempcx & 0x0f));
 
        tempax = ((tempbx >> 8) & 0x07) << 3;
 
-- 
2.1.4

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

Reply via email to