From: Andrew Morton ERROR: space required after that ',' (ctx:OxV) #107: FILE: drivers/video/console/sticore.c:544: + int (*search_font_fnc) (struct sti_cooked_rom *,int,int) ) ^ ERROR: space required after that ',' (ctx:VxV) #107: FILE: drivers/video/console/sticore.c:544: + int (*search_font_fnc) (struct sti_cooked_rom *,int,int) ) ^ ERROR: space prohibited before that close parenthesis ')' #107: FILE: drivers/video/console/sticore.c:544: + int (*search_font_fnc) (struct sti_cooked_rom *,int,int) ) total: 3 errors, 0 warnings, 102 lines checked ./patches/video-console-sticonrec-make-code-static.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: Adrian Bunk Signed-off-by: Andrew Morton --- drivers/video/console/sticore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/console/sticore.c~video-console-sticonrec-make-code-static-checkpatch-fixes drivers/video/console/sticore.c --- a/drivers/video/console/sticore.c~video-console-sticonrec-make-code-static-checkpatch-fixes +++ a/drivers/video/console/sticore.c @@ -541,7 +541,7 @@ static struct sti_cooked_font __devinit static struct sti_cooked_font __devinit *sti_select_font(struct sti_cooked_rom *rom, - int (*search_font_fnc) (struct sti_cooked_rom *,int,int) ) + int (*search_font_fnc)(struct sti_cooked_rom *, int, int)) { struct sti_cooked_font *font; int i; _