aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kernel-doc
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-09-09 16:10:33 +0200
committerJonathan Corbet <corbet@lwn.net>2020-09-10 10:44:46 -0600
commit5eb6b4b3e21612be735fe0305c27bfe2e7ab3224 (patch)
tree0dc82ebb7426e4dfe0d2fab314dd1ee138ad98f2 /scripts/kernel-doc
parentf6236efced85b95752d2aec655d4a687dcabc04a (diff)
downloadlinux-5eb6b4b3e21612be735fe0305c27bfe2e7ab3224.tar.gz
kernel-doc: include line numbers for function prototypes
This should solve bad error reports like this one: ./include/linux/iio/iio.h:0: WARNING: Unknown target name: "devm". Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Link: https://lore.kernel.org/r/56eed0ba50cd726236acd12b11b55ce54854c5ea.1599660067.git.mchehab+huawei@kernel.org Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'scripts/kernel-doc')
-rwxr-xr-xscripts/kernel-doc2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index d1b445665ad65..3982d47048a73 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -1594,6 +1594,8 @@ sub dump_function($$) {
my $file = shift;
my $noret = 0;
+ print_lineno($.);
+
$prototype =~ s/^static +//;
$prototype =~ s/^extern +//;
$prototype =~ s/^asmlinkage +//;