[Spice-devel] [PATCH v3 2/7] Simplify spice_usb_device_manager_device_to_libdev()
Kirill Moizik
kirill at daynix.com
Mon Jun 15 02:57:14 PDT 2015
From: Christophe Fergeau <cfergeau at redhat.com>
The Windows-specific version duplicates some code from
spice_usb_device_equal_libdev(), this commit
switches to using that helper instead.
---
src/usb-device-manager.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/src/usb-device-manager.c b/src/usb-device-manager.c
index 3f42a9f..ab2a8cd 100644
--- a/src/usb-device-manager.c
+++ b/src/usb-device-manager.c
@@ -1865,7 +1865,6 @@ spice_usb_device_manager_device_to_libdev(SpiceUsbDeviceManager *self,
*/
libusb_device *d, **devlist;
- int bus, addr;
int i;
g_return_val_if_fail(SPICE_IS_USB_DEVICE_MANAGER(self), NULL);
@@ -1873,16 +1872,12 @@ spice_usb_device_manager_device_to_libdev(SpiceUsbDeviceManager *self,
g_return_val_if_fail(self->priv != NULL, NULL);
g_return_val_if_fail(self->priv->context != NULL, NULL);
- /* On windows we match by vid / pid, since the address may change */
- bus = spice_usb_device_get_vid(device);
- addr = spice_usb_device_get_pid(device);
-
libusb_get_device_list(self->priv->context, &devlist);
if (!devlist)
return NULL;
for (i = 0; (d = devlist[i]) != NULL; i++) {
- if (spice_usb_device_manager_libdev_match(d, bus, addr)) {
+ if (spice_usb_device_equal_libdev(device, d)) {
libusb_ref_device(d);
break;
}
--
2.1.0
More information about the Spice-devel
mailing list