summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-08-10 13:08:15 +0000
committerThierry Vignaud <tv@mandriva.org>2007-08-10 13:08:15 +0000
commit22f526402a9982e444af1508f1b1dd43efa28b31 (patch)
tree9d56cf72c96f88d33c692dd86678dd52e9e3ead4 /perl-install/detect_devices.pm
parentdcd0d1426d5eb0dbc63a901f90576ea3d56fb995 (diff)
downloaddrakx-22f526402a9982e444af1508f1b1dd43efa28b31.tar
drakx-22f526402a9982e444af1508f1b1dd43efa28b31.tar.gz
drakx-22f526402a9982e444af1508f1b1dd43efa28b31.tar.bz2
drakx-22f526402a9982e444af1508f1b1dd43efa28b31.tar.xz
drakx-22f526402a9982e444af1508f1b1dd43efa28b31.zip
(pci_probe__real) let modules returned by modaliases be back compatible
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index d7b1327b6..d2a794fae 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -773,6 +773,7 @@ sub pci_probe__real() {
add_addons($pcitable_addons, map {
my %l;
@l{qw(vendor id subvendor subid pci_domain pci_bus pci_device pci_function media_type nice_media_type driver description)} = split "\t";
+ $l{driver} =~ s/snd_/snd-/; # FIXME: clean the code instead on post 2008.0
$l{$_} = hex $l{$_} foreach qw(vendor id subvendor subid);
$l{bus} = 'PCI';
$l{sysfs_device} = sprintf('/sys/bus/pci/devices/%04x:%02x:%02x.%d', $l{pci_domain}, $l{pci_bus}, $l{pci_device}, $l{pci_function});