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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307774

View file

@ -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: