diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-06-20 14:23:01 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-06-21 16:57:44 +0200 |
commit | 7d7ea8d2409fca0796f87676e489ed4ac0690a1b (patch) | |
tree | 2279cd00e73ad5f1d8714c75b5540b873e1a0e87 /scripts/get_abi.pl | |
parent | 45f965179560f26227d87641da0d055d5751f49f (diff) | |
download | linux-7d7ea8d2409fca0796f87676e489ed4ac0690a1b.tar.bz2 |
scripts/get_abi.pl: fix parse issues with some files
A few files are failing to parse:
Documentation/ABI/testing/sysfs-bus-pci-devices-aer_stats
Documentation/ABI/testing/sysfs-class-pktcdvd
Documentation/ABI/testing/sysfs-bus-nfit
On all three files, the problem is that there is a ":" character
at the initial file description.
Improve the parse in order to handle those special cases.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/get_abi.pl')
-rwxr-xr-x | scripts/get_abi.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl index 7d454e359d25..116f0c33c16d 100755 --- a/scripts/get_abi.pl +++ b/scripts/get_abi.pl @@ -87,7 +87,7 @@ sub parse_abi { # New "tag" is actually part of # description. Don't consider it a tag $new_tag = ""; - } else { + } elsif ($tag ne "") { parse_error($file, $ln, "tag '$tag' is invalid", $_); } } @@ -110,7 +110,7 @@ sub parse_abi { next; } - if ($new_tag) { + if ($tag ne "" && $new_tag) { $tag = $new_tag; if ($new_what) { |