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:
Edward Tomasz Napierala 2016-10-22 14:37:13 +00:00
parent 8f34671a5e
commit 0b9cf9729b

View File

@ -214,8 +214,8 @@ ugen20_enumerate(struct libusb20_device *pdev, const char *id)
snprintf(pdev->usb_desc, sizeof(pdev->usb_desc), snprintf(pdev->usb_desc, sizeof(pdev->usb_desc),
USB_GENERIC_NAME "%u.%u: <%s %s> at usbus%u", pdev->bus_number, USB_GENERIC_NAME "%u.%u: <%s %s> at usbus%u", pdev->bus_number,
pdev->device_address, devinfo.udi_product, pdev->device_address, devinfo.udi_vendor,
devinfo.udi_vendor, pdev->bus_number); devinfo.udi_product, pdev->bus_number);
error = 0; error = 0;
done: done: