diff options
author | Herton Ronaldo Krzesinski <herton@mandriva.com.br> | 2009-11-25 12:02:56 +0000 |
---|---|---|
committer | Herton Ronaldo Krzesinski <herton@mandriva.com.br> | 2009-11-25 12:02:56 +0000 |
commit | ff576c1833b7705dedd7e32c93700b30f2957853 (patch) | |
tree | d6e66797bf2bd9d90fb57c49eb8e609b4aa97f74 /perl-install/c/stuff.xs.pl | |
parent | db8c082d090e2f751c326a16a5b265d702de6739 (diff) | |
download | drakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar drakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar.gz drakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar.bz2 drakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar.xz drakx-ff576c1833b7705dedd7e32c93700b30f2957853.zip |
update drakx to get proper sysfs device path from usb devices
Diffstat (limited to 'perl-install/c/stuff.xs.pl')
-rw-r--r-- | perl-install/c/stuff.xs.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index 0f4908d9b..dda429f8b 100644 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -281,8 +281,8 @@ usb_probe() for (i = 0; i < entries.nb; i++) { struct pciusb_entry *e = &entries.entries[i]; struct usb_class_text class_text = usb_class2text(e->class_id); - snprintf(buf, sizeof(buf), "%04x\t%04x\t%s|%s|%s\t%s\t%s\t%d\t%d", - e->vendor, e->device, class_text.usb_class_text, class_text.usb_sub_text, class_text.usb_prot_text, e->module ? e->module : "unknown", e->text, e->pci_bus, e->pci_device); + snprintf(buf, sizeof(buf), "%04x\t%04x\t%s|%s|%s\t%s\t%s\t%d\t%d\t%d", + e->vendor, e->device, class_text.usb_class_text, class_text.usb_sub_text, class_text.usb_prot_text, e->module ? e->module : "unknown", e->text, e->pci_bus, e->pci_device, e->usb_port); PUSHs(sv_2mortal(newSVpv(buf, 0))); } pciusb_free(&entries); |