From: Andrew Morton ERROR: need spaces around that '+=' (ctx:VxW) #125: FILE: drivers/video/fbmon.c:539: + for (j = 0; j < 6; j++, block+= STD_TIMING_DESCRIPTION_SIZE) ^ ERROR: need spaces around that '*=' (ctx:WxV) #248: FILE: drivers/video/fbmon.c:1080: + h_period *=10000; ^ total: 2 errors, 0 warnings, 377 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: "Antonino A. Daplas" Cc: Andre Haupt Signed-off-by: Andrew Morton --- drivers/video/fbmon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/fbmon.c~fbmon-cleanup-trailing-whitespaces-checkpatch-fixes drivers/video/fbmon.c --- a/drivers/video/fbmon.c~fbmon-cleanup-trailing-whitespaces-checkpatch-fixes +++ a/drivers/video/fbmon.c @@ -536,7 +536,7 @@ static int get_dst_timing(unsigned char { int j, num = 0; - for (j = 0; j < 6; j++, block+= STD_TIMING_DESCRIPTION_SIZE) + for (j = 0; j < 6; j++, block += STD_TIMING_DESCRIPTION_SIZE) num += get_std_timing(block, &mode[num]); return num; @@ -1077,7 +1077,7 @@ static u32 fb_get_hblank_by_dclk(u32 dcl h_period = 100 - C_VAL; h_period *= h_period; h_period += (M_VAL * xres * 2 * 1000)/(5 * dclk); - h_period *=10000; + h_period *= 10000; h_period = int_sqrt(h_period); h_period -= (100 - C_VAL) * 100; _