Commit ddb3a5ee authored by Ivo Ivanov's avatar Ivo Ivanov Committed by Alexandre Julliard

wineusb.sys: Pass interface and interface_index from the event data to the usb device data.

parent 5fd79c32
......@@ -127,6 +127,9 @@ static void add_unix_device(const struct usb_add_device_event *event)
InitializeListHead(&device->irp_list);
device->removed = FALSE;
device->interface = event->interface;
device->interface_index = event->interface_index;
device->class = event->class;
device->subclass = event->subclass;
device->protocol = event->protocol;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment