diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-09-09 16:10:33 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2020-09-10 10:44:46 -0600 |
commit | 5eb6b4b3e21612be735fe0305c27bfe2e7ab3224 (patch) | |
tree | 0dc82ebb7426e4dfe0d2fab314dd1ee138ad98f2 | |
parent | f6236efced85b95752d2aec655d4a687dcabc04a (diff) | |
download | linux-5eb6b4b3e21612be735fe0305c27bfe2e7ab3224.tar.bz2 |
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>
-rwxr-xr-x | scripts/kernel-doc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index d1b445665ad6..3982d47048a7 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 +//; |