[Spice-devel] [PATCH v7 01/10] Simplify spice_usb_device_equal_libdev()
Jonathon Jongsma
jjongsma at redhat.com
Wed Feb 17 20:18:35 UTC 2016
Already acked in previous series
On Thu, 2016-02-11 at 18:04 +0200, Dmitry Fleytman wrote:
> 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 647edd0..344b4bf 100644
> --- a/src/usb-device-manager.c
> +++ b/src/usb-device-manager.c
> @@ -1907,19 +1907,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
>
More information about the Spice-devel
mailing list