Fix libusb20_dev_get_desc(3) to use the "vendor product" order, not
"product vendor". This is consistent with how it's generally done. The ordering is visible eg in usbconfig(8) output. Note to self: MFC this to 9 and 8. Reviewed by: hselasky@ MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D8258
This commit is contained in:
parent
4a9db4ecfb
commit
dd66bf2b57
@ -214,8 +214,8 @@ ugen20_enumerate(struct libusb20_device *pdev, const char *id)
|
||||
|
||||
snprintf(pdev->usb_desc, sizeof(pdev->usb_desc),
|
||||
USB_GENERIC_NAME "%u.%u: <%s %s> at usbus%u", pdev->bus_number,
|
||||
pdev->device_address, devinfo.udi_product,
|
||||
devinfo.udi_vendor, pdev->bus_number);
|
||||
pdev->device_address, devinfo.udi_vendor,
|
||||
devinfo.udi_product, pdev->bus_number);
|
||||
|
||||
error = 0;
|
||||
done:
|
||||
|
Loading…
Reference in New Issue
Block a user