[Spice-devel] [PATCH v3 1/7] Simplify spice_usb_device_equal_libdev()
Kirill Moizik
kirill at daynix.com
Mon Jun 15 02:57:13 PDT 2015
From: Christophe Fergeau <cfergeau at redhat.com>
The Windows-specific version duplicates some code from
spice_usb_device_manager_libdev_match(), this commit
switches to using that helper instead.
---
src/usb-device-manager.c | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/src/usb-device-manager.c b/src/usb-device-manager.c
index 12ad4ba..3f42a9f 100644
--- a/src/usb-device-manager.c
+++ b/src/usb-device-manager.c
@@ -1837,19 +1837,14 @@ static gboolean
spice_usb_device_equal_libdev(SpiceUsbDevice *device,
libusb_device *libdev)
{
- int vid1, vid2, pid1, pid2;
+ int vid, pid;
if ((device == NULL) || (libdev == NULL))
return FALSE;
- vid1 = spice_usb_device_get_vid(device);
- pid1 = spice_usb_device_get_pid(device);
-
- if (!spice_usb_device_manager_get_libdev_vid_pid(libdev, &vid2, &pid2)) {
- return FALSE;
- }
-
- return ((vid1 == vid2) && (pid1 == pid2));
+ vid = spice_usb_device_get_vid(device);
+ pid = spice_usb_device_get_pid(device);
+ return spice_usb_device_manager_libdev_match(libdev, vid, pid);
}
#endif
--
2.1.0
More information about the Spice-devel
mailing list