Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03123df0 authored by Roger Quadros's avatar Roger Quadros Committed by Greg Kroah-Hartman
Browse files

Revert "usb: gadget: uvc: Add missing call for additional setup data"

commit eb38d913c27f32f4df173791051fecf6aca34173 upstream.

This reverts commit 4fbac520.

This commit breaks g_webcam when used with uvc-gadget [1].

The user space application (e.g. uvc-gadget) is responsible for
sending response to UVC class specific requests on control endpoint
in uvc_send_response() in uvc_v4l2.c.

The bad commit was causing a duplicate response to be sent with
incorrect response data thus causing UVC probe to fail at the host
and broken control transfer endpoint at the gadget.

[1] - git://git.ideasonboard.org/uvc-gadget.git



Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarRoger Quadros <rogerq@ti.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ce2e4ce
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -258,13 +258,6 @@ uvc_function_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl)
	memcpy(&uvc_event->req, ctrl, sizeof(uvc_event->req));
	v4l2_event_queue(&uvc->vdev, &v4l2_event);

	/* Pass additional setup data to userspace */
	if (uvc->event_setup_out && uvc->event_length) {
		uvc->control_req->length = uvc->event_length;
		return usb_ep_queue(uvc->func.config->cdev->gadget->ep0,
			uvc->control_req, GFP_ATOMIC);
	}

	return 0;
}