While trying to make gpu docs warning free I stumbled over one output which wasn't following proper compiler error output standards. Fix it up for more quickfix awesomeness.
Cc: Jonathan Corbet <cor...@lwn.net> Cc: Jani Nikula <jani.nik...@intel.com> Cc: linux-...@vger.kernel.org Signed-off-by: Daniel Vetter <daniel.vet...@intel.com> --- scripts/kernel-doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 27757c21551a..e067cfb59321 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc @@ -2969,7 +2969,7 @@ sub process_file($) { } } elsif ($inline_doc_state == STATE_INLINE_NAME) { $inline_doc_state = STATE_INLINE_ERROR; - print STDERR "Warning(${file}:$.): "; + print STDERR "${file}:$.: warning: "; print STDERR "Incorrect use of kernel-doc format: $_"; ++$warnings; } -- 2.8.1