diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-12-05 00:55:28 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-12-05 00:55:28 +0300 |
commit | fd6d2e506ce6f850d45342a15c896591291b77b5 (patch) | |
tree | b44c6685a0bfa44dd08836985bfb76b5a87fc592 /scripts | |
parent | 2391f0b4808e3d5af348324d69f5f45c56a26836 (diff) | |
parent | 9956cfef3409177d9e24ea4b7910148a18073a6f (diff) | |
download | linux-fd6d2e506ce6f850d45342a15c896591291b77b5.tar.xz |
Merge tag 'docs-4.15-fixes' of git://git.lwn.net/linux
Pull documentation fixes from Jonathan Corbet:
"A handful of documentation fixes.
The most significant of these addresses a problem with the new warning
mode: it can break the build when confronted with a source file
containing malformed kerneldoc comments"
* tag 'docs-4.15-fixes' of git://git.lwn.net/linux:
Documentation: fix docs build error after source file removed
scsi: documentation: Fix case of 'scsi_device' struct mention(s)
genericirq.rst: Remove :c:func:`...` in code blocks
dmaengine: doc : Fix warning "Title underline too short" while make xmldocs
scripts/kernel-doc: Don't fail with status != 0 if error encountered with -none
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/kernel-doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index bd29a92b4b48..df0f045a9a89 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc @@ -3248,4 +3248,4 @@ if ($verbose && $warnings) { print STDERR "$warnings warnings\n"; } -exit($errors); +exit($output_mode eq "none" ? 0 : $errors); |