diff options
-rwxr-xr-x | convert/merge2pcitable.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl index 4c690877..6d91037d 100755 --- a/convert/merge2pcitable.pl +++ b/convert/merge2pcitable.pl @@ -69,7 +69,7 @@ sub read_pcitable { $module = "unknown" if $id1 == 0x1011 && (0x0024 <= $id2 && $id2 <= 0x0025); # known errors in redhat's pcitable # these are pci to pci bridge - $module = "i82365" if $module =~ /yenta_socket/; + $module = "yenta_socket" if $module =~ /i82365/; my $id = join '', map { s/^0x//; $_ } $id1, $id2, $subid1, $subid2; $drivers{$id} and print STDERR "$f $line: multiple entry for $id (skipping $module $text)\n"; $drivers{$id} ||= [ map &$rm_quote, $module, $text ]; |