Subject: checkpatch: Print filenames of patches checkpatch: Print filenames of patches instead of the very uninformative `Your patch'. Signed-off-by: Geert Uytterhoeven --- This patch is not `checkpatch' clean :-) Although I shortened 2 lines, they're still longer than 80 characters... scripts/checkpatch.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1587,10 +1587,10 @@ sub process { } if ($clean == 1 && $quiet == 0) { - print "Your patch has no obvious style problems and is ready for submission.\n" + print "$filename has no obvious style problems and is ready for submission.\n" } if ($clean == 0 && $quiet == 0) { - print "Your patch has style problems, please review. If any of these errors\n"; + print "$filename has style problems, please review. If any of these errors\n"; print "are false positives report them to the maintainer, see\n"; print "CHECKPATCH in MAINTAINERS.\n"; }