aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kernel-doc
diff options
context:
space:
mode:
authorJani Nikula <jani.nikula@intel.com>2016-05-30 11:21:06 +0300
committerJani Nikula <jani.nikula@intel.com>2016-05-30 13:39:04 +0300
commit2f4ad40a05265827848200689094348363027069 (patch)
treee7328acba926106aaff961e10e31146b841cafc0 /scripts/kernel-doc
parentkernel-doc: concatenate contents of colliding sections (diff)
downloadlinux-dev-2f4ad40a05265827848200689094348363027069.tar.xz
linux-dev-2f4ad40a05265827848200689094348363027069.zip
kernel-doc: reset contents and section harder
If the documentation comment does not have params or sections, the section heading may leak from the previous documentation comment. Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'scripts/kernel-doc')
-rwxr-xr-xscripts/kernel-doc3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index 3ac4b57ed76a..0eb2e7b5bf10 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -2763,6 +2763,8 @@ sub process_file($) {
}
$state = STATE_FIELD;
+ $contents = "";
+ $section = $section_default;
if (/-(.*)/) {
# strip leading/trailing/multiple spaces
$descr= $1;
@@ -2960,6 +2962,7 @@ sub process_file($) {
elsif (/$doc_end/)
{
dump_doc_section($file, $section, xml_escape($contents));
+ $section = $section_default;
$contents = "";
$function = "";
%parameterdescs = ();