summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-03-21 18:39:09 +0000
committerFrancois Pons <fpons@mandriva.com>2001-03-21 18:39:09 +0000
commita46b2c4c87911f151d53e9ecb1cd145da3f359cf (patch)
treeabbb2ef322c5e605695d74594cae88fe4154a5e0 /perl-install/detect_devices.pm
parent2663cca07943be6f91e02a2223fac09609c00ea5 (diff)
downloaddrakx-a46b2c4c87911f151d53e9ecb1cd145da3f359cf.tar
drakx-a46b2c4c87911f151d53e9ecb1cd145da3f359cf.tar.gz
drakx-a46b2c4c87911f151d53e9ecb1cd145da3f359cf.tar.bz2
drakx-a46b2c4c87911f151d53e9ecb1cd145da3f359cf.tar.xz
drakx-a46b2c4c87911f151d53e9ecb1cd145da3f359cf.zip
added pci id reference.
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 79b9c92ad..f2d1dacd3 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -179,7 +179,7 @@ sub pci_probe {
my ($probe_type) = @_;
map {
my %l;
- @l{qw(vendor id subvendor subid type driver description)} = split "\t";
+ @l{qw(vendor id subvendor subid pci_bus pci_device pci_function type driver description)} = split "\t";
$l{$_} = hex $l{$_} foreach qw(vendor id subvendor subid);
$l{bus} = 'PCI';
\%l