summaryrefslogtreecommitdiffstats
path: root/convert
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-01-27 22:48:00 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-01-27 22:48:00 +0000
commit600aaa0182a5090c1ce78c858e403e0c60beb19a (patch)
tree84847f412291c52d363c9a0d7dd466e6386f71b0 /convert
parent9413487f45c45b0fd08c75776cae983ccfc46dec (diff)
downloadldetect-lst-600aaa0182a5090c1ce78c858e403e0c60beb19a.tar
ldetect-lst-600aaa0182a5090c1ce78c858e403e0c60beb19a.tar.gz
ldetect-lst-600aaa0182a5090c1ce78c858e403e0c60beb19a.tar.bz2
ldetect-lst-600aaa0182a5090c1ce78c858e403e0c60beb19a.tar.xz
ldetect-lst-600aaa0182a5090c1ce78c858e403e0c60beb19a.zip
we now want yenta_socket
Diffstat (limited to 'convert')
-rwxr-xr-xconvert/merge2pcitable.pl2
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 ];