Staging: panel: Remove space
authorKsenija Stanojevic <ksenija.stanojevic@gmail.com>
Sun, 3 Jan 2016 19:32:03 +0000 (20:32 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jan 2016 06:22:01 +0000 (22:22 -0800)
No space is necessary after a cast, therefore remove it.
Found by checkpatch.pl

Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/panel/panel.c

index 1e67e26a9e0c470ce59ac64bde2018596fc21c66..04d86f3d8e12e79b92b582c87182699e4eb251a9 100644 (file)
@@ -1805,7 +1805,7 @@ static void phys_scan_contacts(void)
 
                        w_dtr(pprt, oldval & ~bitval);  /* enable this output */
                        bitmask = PNL_PINPUT(r_str(pprt)) & ~gndmask;
-                       phys_read |= (pmask_t) bitmask << (5 * bit);
+                       phys_read |= (pmask_t)bitmask << (5 * bit);
                }
                w_dtr(pprt, oldval);    /* disable all outputs */
        }
This page took 0.026083 seconds and 5 git commands to generate.