From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752971AbcGOITo (ORCPT ); Fri, 15 Jul 2016 04:19:44 -0400 Received: from mail-wm0-f65.google.com ([74.125.82.65]:36395 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751561AbcGOITk (ORCPT ); Fri, 15 Jul 2016 04:19:40 -0400 From: Daniel Vetter To: LKML Cc: Daniel Vetter , Jonathan Corbet , Jani Nikula , linux-doc@vger.kernel.org, Daniel Vetter Subject: [PATCH] kernel-doc: Fix up warning output Date: Fri, 15 Jul 2016 10:19:30 +0200 Message-Id: <1468570770-29293-1-git-send-email-daniel.vetter@ffwll.ch> X-Mailer: git-send-email 2.8.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 Cc: Jani Nikula Cc: linux-doc@vger.kernel.org Signed-off-by: Daniel Vetter --- 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