[Spice-devel] [PATCH usbredir] usbredirserver: show bus:device of the chosen USB device if specifying vid:pid
Chen Hanxiao
chen_han_xiao at 126.com
Sat Nov 18 09:36:15 UTC 2017
From: Chen Hanxiao <chenhanxiao at gmail.com>
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 at gmail.com>
---
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
More information about the Spice-devel
mailing list