diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
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 |