diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-12 13:40:11 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-12 13:40:11 +0000 |
commit | 4987a37d42229bf395a9fa390f0db7405f813285 (patch) | |
tree | babaceab0660047667f55e58eb3dd7701790eded /convert/merge2pcitable.pl | |
parent | 75e33ce9453d38b5e6362a10e2a79f6beab6a9d2 (diff) | |
download | ldetect-lst-4987a37d42229bf395a9fa390f0db7405f813285.tar ldetect-lst-4987a37d42229bf395a9fa390f0db7405f813285.tar.gz ldetect-lst-4987a37d42229bf395a9fa390f0db7405f813285.tar.bz2 ldetect-lst-4987a37d42229bf395a9fa390f0db7405f813285.tar.xz ldetect-lst-4987a37d42229bf395a9fa390f0db7405f813285.zip |
update "known errors in redhat's pcitable"
Diffstat (limited to 'convert/merge2pcitable.pl')
-rwxr-xr-x | convert/merge2pcitable.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl index 9d3210c6..bc076e26 100755 --- a/convert/merge2pcitable.pl +++ b/convert/merge2pcitable.pl @@ -5,7 +5,6 @@ use MDK::Common; @ignored_modules = ( qw(alsa ignore), -qw(tr), # redhat have this, ignore it ); if ($0 =~ /merge2pcitable/) @@ -81,7 +80,7 @@ sub read_pcitable { $module =~ s/\.o$//; $module = '"unknown"' if dummy_module($module); - $module = '"unknown"' if $id1 == 0x1011 && (0x0024 <= $id2 && $id2 <= 0x0025); + $module = '"unknown"' if $id1 eq '0x1011' && $id2 eq '0x0004'; # known errors in redhat's pcitable # these are pci to pci bridge $module = '"yenta_socket"' if $module =~ /i82365/; |