Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: xgifb: vb_util.h Space after cast

Make suggested checkpatch modification for
CHECK: No space is necessary after a cast

Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Walt Feasel and committed by
Greg Kroah-Hartman
2a3d1079 df5d4312

+2 -2
+2 -2
drivers/staging/xgifb/vb_util.h
··· 18 18 u8 temp; 19 19 20 20 temp = xgifb_reg_get(port, index); 21 - temp = (u8) ((temp & data_and) | data_or); 21 + temp = (u8)((temp & data_and) | data_or); 22 22 xgifb_reg_set(port, index, temp); 23 23 } 24 24 ··· 28 28 u8 temp; 29 29 30 30 temp = xgifb_reg_get(port, index); 31 - temp = (u8) (temp & data_and); 31 + temp = (u8)(temp & data_and); 32 32 xgifb_reg_set(port, index, temp); 33 33 } 34 34