diff options
author | Francois Pons <fpons@mandriva.com> | 2001-03-21 18:40:13 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-03-21 18:40:13 +0000 |
commit | 54840a56fcf8dbc066dff91142d943c0b4d4eddf (patch) | |
tree | ac20a709d9ecf613ea92c616aeded6925d2ccc46 /perl-install/c | |
parent | a46b2c4c87911f151d53e9ecb1cd145da3f359cf (diff) | |
download | drakx-54840a56fcf8dbc066dff91142d943c0b4d4eddf.tar drakx-54840a56fcf8dbc066dff91142d943c0b4d4eddf.tar.gz drakx-54840a56fcf8dbc066dff91142d943c0b4d4eddf.tar.bz2 drakx-54840a56fcf8dbc066dff91142d943c0b4d4eddf.tar.xz drakx-54840a56fcf8dbc066dff91142d943c0b4d4eddf.zip |
added support for pci id extraction.
Diffstat (limited to 'perl-install/c')
-rw-r--r-- | perl-install/c/stuff.xs.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/c/stuff.xs.pm b/perl-install/c/stuff.xs.pm index 41d0b721a..12d4c28a4 100644 --- a/perl-install/c/stuff.xs.pm +++ b/perl-install/c/stuff.xs.pm @@ -230,8 +230,9 @@ pci_probe(probe_type) EXTEND(SP, entries.nb); for (i = 0; i < entries.nb; i++) { struct pciusb_entry e = entries.entries[i]; - snprintf(buf, sizeof(buf), "%04x\t%04x\t%04x\t%04x\t%s\t%s\t%s", - e.vendor, e.device, e.subvendor, e.subdevice, pci_class2text(e.class), e.module ? e.module : "unknown", e.text); + snprintf(buf, sizeof(buf), "%04x\t%04x\t%04x\t%04x\t%d\t%d\t%d\t%s\t%s\t%s", + e.vendor, e.device, e.subvendor, e.subdevice, e.pci_bus, e.pci_device, e.pci_function, + pci_class2text(e.class), e.module ? e.module : "unknown", e.text); PUSHs(sv_2mortal(newSVpv(buf, 0))); } pciusb_free(entries); |