diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-20 11:09:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-20 11:09:06 +0000 |
commit | bd6cc4b49d53e6cafc62a1edc8b356426f468e28 (patch) | |
tree | 90b4c18d2d62190cd1b977533fb1ef015ed1670b /convert/merge2pcitable.pl | |
parent | 977ed6266ab244fc89bf270d3ea63b2ba995dad2 (diff) | |
download | ldetect-lst-bd6cc4b49d53e6cafc62a1edc8b356426f468e28.tar ldetect-lst-bd6cc4b49d53e6cafc62a1edc8b356426f468e28.tar.gz ldetect-lst-bd6cc4b49d53e6cafc62a1edc8b356426f468e28.tar.bz2 ldetect-lst-bd6cc4b49d53e6cafc62a1edc8b356426f468e28.tar.xz ldetect-lst-bd6cc4b49d53e6cafc62a1edc8b356426f468e28.zip |
remove (yet again) tulip for some DEC cards, and ensure the bug in redhat pcitable won't both us again
Diffstat (limited to 'convert/merge2pcitable.pl')
-rwxr-xr-x | convert/merge2pcitable.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl index 2b797e6c..c1607abd 100755 --- a/convert/merge2pcitable.pl +++ b/convert/merge2pcitable.pl @@ -66,6 +66,9 @@ sub read_pcitable { $module =~ s/\.o$//; $module = "unknown" if dummy_module($module); + $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/; 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"; |