Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1444033 > unrolled thread
| Started by | Daniel Vetter <daniel.vetter@ffwll.ch> |
|---|---|
| First post | 2016-07-15 10:20 +0200 |
| Last post | 2016-07-18 04:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] kernel-doc: Fix up warning output Daniel Vetter <daniel.vetter@ffwll.ch> - 2016-07-15 10:20 +0200
Re: [PATCH] kernel-doc: Fix up warning output Jonathan Corbet <corbet@lwn.net> - 2016-07-18 04:40 +0200
| From | Daniel Vetter <daniel.vetter@ffwll.ch> |
|---|---|
| Date | 2016-07-15 10:20 +0200 |
| Subject | [PATCH] kernel-doc: Fix up warning output |
| Message-ID | <rV6vM-4wu-13@gated-at.bofh.it> |
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 <corbet@lwn.net>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: linux-doc@vger.kernel.org
Signed-off-by: Daniel Vetter <daniel.vetter@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
[toc] | [next] | [standalone]
| From | Jonathan Corbet <corbet@lwn.net> |
|---|---|
| Date | 2016-07-18 04:40 +0200 |
| Message-ID | <rW6Dn-jV-3@gated-at.bofh.it> |
| In reply to | #1444033 |
On Fri, 15 Jul 2016 10:19:30 +0200 Daniel Vetter <daniel.vetter@ffwll.ch> wrote: > 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. Applied to the docs tree - awesomeness achieved. Thanks, jon
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web