summaryrefslogtreecommitdiffstats
path: root/convert
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-08-08 20:25:51 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-08-08 20:25:51 +0000
commit6f1a461faf30123fb2e25e5493431849753a9b01 (patch)
tree5edb1f0d8156dba2e48e3538f6d3795beeaa463a /convert
parent05b8253d1a4f703716674fcf6eeebda2931a6794 (diff)
downloadldetect-lst-6f1a461faf30123fb2e25e5493431849753a9b01.tar
ldetect-lst-6f1a461faf30123fb2e25e5493431849753a9b01.tar.gz
ldetect-lst-6f1a461faf30123fb2e25e5493431849753a9b01.tar.bz2
ldetect-lst-6f1a461faf30123fb2e25e5493431849753a9b01.tar.xz
ldetect-lst-6f1a461faf30123fb2e25e5493431849753a9b01.zip
handle pcitable with no text field, and so fixes make check
Diffstat (limited to 'convert')
-rwxr-xr-xconvert/merge2pcitable.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl
index c5df4235..619339f5 100755
--- a/convert/merge2pcitable.pl
+++ b/convert/merge2pcitable.pl
@@ -44,9 +44,9 @@ sub dummy_module {
sub to_string {
my ($id, $driver) = @_;
@$driver >= 2 or error("error: to_string $id");
- my ($module, $text) = map { qq("$_") } @$driver;
+ my ($module, $text) = map { defined($_) && qq("$_") } @$driver;
my ($id1, $id2, $subid1, $subid2) = map { "0x$_" } ($id =~ /(....)/g);
- join "\t", $id1, $id2, if_("$subid1 $subid2" ne "0xffff 0xffff", $subid1, $subid2), $module, $text;
+ join "\t", $id1, $id2, if_("$subid1 $subid2" ne "0xffff 0xffff", $subid1, $subid2), $module, if_($text, $text);
}
sub read_rhpcitable {
@@ -81,13 +81,13 @@ sub read_pcitable {
if (my ($id1, $id2, @l) = split /\t+/) {
push @l, '""' if $newer_rh_format;
my ($subid1, $subid2) = ('ffff', 'ffff');
- ($subid1, $subid2, @l) = @l if @l == 4;
- @l == 2 or die "$f:$line: bad number of fields " . (int @l) . " (in $_)\n";
+ ($subid1, $subid2, @l) = @l if @l > 2;
+ @l == 1 || @l == 2 or die "$f:$line: bad number of fields " . (int @l) . " (in $_)\n";
my ($module, $text) = @l;
my $class = $text =~ /(.*?)|/;
my $id1_ = $rm_quote_silent->($id1);
- if ($class{$id1_}) {
+ if (defined $text && $class{$id1_}) {
print STDERR "$f:$line: class $id1_ named both $class and $class{$id1_}, taking $class{$id1_}\n";
$class{$id1_} ||= $1;
$text =~ s/(.*?)|/$class{$id1_}|/;
@@ -105,7 +105,7 @@ sub read_pcitable {
lc($_);
} $id1, $id2, $subid1, $subid2;
$drivers{$id} && $strict and error("$f:$line: multiple entry for $id (skipping $module $text)");
- $drivers{$id} ||= [ $rm_quote->($module), $rm_quote->($text), $line ];
+ $drivers{$id} ||= [ $rm_quote->($module), defined($text) ? $rm_quote->($text) : undef, $line ];
} else {
die "$f:$line: bad line\n";
}