OSDN Git Service

Staging: xgifb: Remove space after cast
authorNavya Sri Nizamkari <navyasri.tech@gmail.com>
Thu, 22 Oct 2015 16:50:15 +0000 (22:20 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Oct 2015 02:11:30 +0000 (19:11 -0700)
This patch fixes the checkpatch check:

CHECK: No space is necessary after a cast

Signed-off-by: Navya Sri Nizamkari <navyasri.tech@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/xgifb/vb_init.c

index be30c13..879a7e6 100644 (file)
@@ -814,7 +814,7 @@ static int XGINew_DDRSizing340(struct xgi_hw_device_info *HwDeviceExtension,
 
                memsize += (pVBInfo->ram_channel - 2) + 20;
                if ((HwDeviceExtension->ulVideoMemorySize - 1) <
-                       (unsigned long) (1 << memsize))
+                       (unsigned long)(1 << memsize))
                        continue;
 
                if (XGINew_ReadWriteRest(memsize, start_addr, pVBInfo) == 1)
@@ -835,13 +835,13 @@ static void XGINew_SetDRAMSize_340(struct xgifb_video_info *xgifb_info,
 
        data = xgifb_reg_get(pVBInfo->P3c4, 0x21);
        /* disable read cache */
-       xgifb_reg_set(pVBInfo->P3c4, 0x21, (unsigned short) (data & 0xDF));
+       xgifb_reg_set(pVBInfo->P3c4, 0x21, (unsigned short)(data & 0xDF));
        XGI_DisplayOff(xgifb_info, HwDeviceExtension, pVBInfo);
 
        XGINew_DDRSizing340(HwDeviceExtension, pVBInfo);
        data = xgifb_reg_get(pVBInfo->P3c4, 0x21);
        /* enable read cache */
-       xgifb_reg_set(pVBInfo->P3c4, 0x21, (unsigned short) (data | 0x20));
+       xgifb_reg_set(pVBInfo->P3c4, 0x21, (unsigned short)(data | 0x20));
 }
 
 static u8 *xgifb_copy_rom(struct pci_dev *dev, size_t *rom_size)