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/XGI_main_26.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/xgifb/XGI_main_26.c 
b/drivers/staging/xgifb/XGI_main_26.c
index 06d098e..9f0708f 100644
--- a/drivers/staging/xgifb/XGI_main_26.c
+++ b/drivers/staging/xgifb/XGI_main_26.c
@@ -105,7 +105,7 @@ static int XGIfb_mode_rate_to_ddata(struct vb_device_info 
*XGI_Pr,
        cr_data = XGI_CRT1Table[index].CR[3];
 
        /* Horizontal retrace (=sync) start */
-       HRS = (cr_data & 0xff) | ((unsigned short) (sr_data & 0xC0) << 2);
+       HRS = (cr_data & 0xff) | ((unsigned short)(sr_data & 0xC0) << 2);
        F = HRS - HDE - 3;
 
        sr_data = XGI_CRT1Table[index].CR[6];
@@ -115,8 +115,8 @@ static int XGIfb_mode_rate_to_ddata(struct vb_device_info 
*XGI_Pr,
        cr_data2 = XGI_CRT1Table[index].CR[4];
 
        /* Horizontal blank end */
-       HBE = (cr_data & 0x1f) | ((unsigned short) (cr_data2 & 0x80) >> 2)
-                       | ((unsigned short) (sr_data & 0x03) << 6);
+       HBE = (cr_data & 0x1f) | ((unsigned short)(cr_data2 & 0x80) >> 2)
+                       | ((unsigned short)(sr_data & 0x03) << 6);
 
        /* Horizontal retrace (=sync) end */
        HRE = (cr_data2 & 0x1f) | ((sr_data & 0x04) << 3);
@@ -142,15 +142,15 @@ static int XGIfb_mode_rate_to_ddata(struct vb_device_info 
*XGI_Pr,
        cr_data = XGI_CRT1Table[index].CR[10];
 
        /* Vertical retrace (=sync) start */
-       VRS = (cr_data & 0xff) | ((unsigned short) (cr_data2 & 0x04) << 6)
-                       | ((unsigned short) (cr_data2 & 0x80) << 2)
-                       | ((unsigned short) (sr_data & 0x08) << 7);
+       VRS = (cr_data & 0xff) | ((unsigned short)(cr_data2 & 0x04) << 6)
+                       | ((unsigned short)(cr_data2 & 0x80) << 2)
+                       | ((unsigned short)(sr_data & 0x08) << 7);
        F = VRS + 1 - VDE;
 
        cr_data = XGI_CRT1Table[index].CR[13];
 
        /* Vertical blank end */
-       VBE = (cr_data & 0xff) | ((unsigned short) (sr_data & 0x10) << 4);
+       VBE = (cr_data & 0xff) | ((unsigned short)(sr_data & 0x10) << 4);
        temp = VBE - ((VDE - 1) & 511);
        B = (temp > 0) ? temp : (temp + 512);
 
@@ -937,7 +937,7 @@ static int XGIfb_do_set_var(struct fb_var_screeninfo *var, 
int isactive,
        if (var->pixclock) {
                drate = 1000000000 / var->pixclock;
                hrate = (drate * 1000) / htotal;
-               xgifb_info->refresh_rate = (unsigned int) (hrate * 2
+               xgifb_info->refresh_rate = (unsigned int)(hrate * 2
                                / vtotal);
        } else {
                xgifb_info->refresh_rate = 60;
-- 
2.1.4

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

Reply via email to