Deleted Added
full compact
1c1
< /* $FreeBSD: head/sys/dev/usb2/core/usb2_handle_request.c 186730 2009-01-04 00:12:01Z alfred $ */
---
> /* $FreeBSD: head/sys/dev/usb2/core/usb2_handle_request.c 187173 2009-01-13 19:03:12Z thompsa $ */
89c89
< usb2_needs_explore(xfer->udev->bus, 0);
---
> usb2_needs_explore(xfer->xroot->bus, 0);
128a129
> struct usb2_device *udev = xfer->xroot->udev;
137c138
< sx_xlock(xfer->udev->default_sx + 1);
---
> sx_xlock(udev->default_sx + 1);
149c150
< if (usb2_set_config_index(xfer->udev, conf_no)) {
---
> if (usb2_set_config_index(udev, conf_no)) {
154c155
< if (usb2_probe_and_attach(xfer->udev, USB_IFACE_INDEX_ANY)) {
---
> if (usb2_probe_and_attach(udev, USB_IFACE_INDEX_ANY)) {
161c162
< sx_unlock(xfer->udev->default_sx + 1);
---
> sx_unlock(udev->default_sx + 1);
180c181
< struct usb2_device *udev = xfer->udev;
---
> struct usb2_device *udev = xfer->xroot->udev;
334a336
> struct usb2_device *udev = xfer->xroot->udev;
338,339c340,341
< err = usb2_set_endpoint_stall(xfer->udev,
< usb2_get_pipe_by_addr(xfer->udev, ep), do_stall);
---
> err = usb2_set_endpoint_stall(udev,
> usb2_get_pipe_by_addr(udev, ep), do_stall);
382c384
< udev = xfer->udev;
---
> udev = xfer->xroot->udev;
482c484
< udev = xfer->udev;
---
> udev = xfer->xroot->udev;