From: Chen Hanxiao <chenhanxiao@xxxxxxxxx> We use libusb_open_device_with_vid_pid. If multiple devices have the same vid:pid, it will only return the first one. This patch will show the bus:device of the chosen one. Signed-off-by: Chen Hanxiao <chenhanxiao@xxxxxxxxx> --- usbredirserver/usbredirserver.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/usbredirserver/usbredirserver.c b/usbredirserver/usbredirserver.c index 13965dc..e69e2d0 100644 --- a/usbredirserver/usbredirserver.c +++ b/usbredirserver/usbredirserver.c @@ -321,6 +321,7 @@ int main(int argc, char *argv[]) /* Try to find the specified usb device */ if (usbvendor != -1) { + libusb_device *dev; handle = libusb_open_device_with_vid_pid(ctx, usbvendor, usbproduct); if (!handle) { @@ -328,6 +329,12 @@ int main(int argc, char *argv[]) "Could not open an usb-device with vid:pid %04x:%04x\n", usbvendor, usbproduct); } + dev = libusb_get_device(handle); + fprintf(stderr, "Open a usb-device with vid:pid %04x:%04x on " + "bus %03x device %03x\n", + usbvendor, usbproduct, + libusb_get_bus_number(dev), + libusb_get_device_address(dev)); } else { libusb_device **list = NULL; ssize_t i, n; -- 2.13.6 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel