diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2013-11-06 16:18:32 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-12-02 08:44:51 -0500 |
commit | 48807e17101773117e36916f767fc12018e0eb21 (patch) | |
tree | 6fcd802ad551d82132da1bcea095435390fe6524 | |
parent | 066602943521d64f8ac5e6824fdd91580024b44d (diff) |
scripts/kernel-doc: make unknown function prototype a Warning instead of an Error
When scripts/kernel-doc cannot understand a function prototype,
it had been generating a fatal error and stopping immediately.
Make this a Warning instead of an Error and keep going.
Note that this can happen if the kernel-doc notation that is being
parsed is not actually a function prototype; maybe it's a struct or
something else, so I added "function" to the warning message to try
to make it clearer that scripts/kernel-doc is looking for a function
prototype here.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Acked-by: Mark Brown <broonie@kernel.org>
Acked-by: Rob Landley <rob@landley.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rwxr-xr-x | scripts/kernel-doc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 4305b2f2ec5e..16e8b50c8fcb 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
@@ -2125,8 +2125,7 @@ sub dump_function($$) { | |||
2125 | 2125 | ||
2126 | create_parameterlist($args, ',', $file); | 2126 | create_parameterlist($args, ',', $file); |
2127 | } else { | 2127 | } else { |
2128 | print STDERR "Error(${file}:$.): cannot understand prototype: '$prototype'\n"; | 2128 | print STDERR "Warning(${file}:$.): cannot understand function prototype: '$prototype'\n"; |
2129 | ++$errors; | ||
2130 | return; | 2129 | return; |
2131 | } | 2130 | } |
2132 | 2131 | ||