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

Commit afbe4775 authored by Peter Chen's avatar Peter Chen Committed by Felipe Balbi
Browse files

usb: chipidea: gadget: use udc-core's reset notifier



Replace usb_gadget_driver's disconnect with udc-core's reset notifier at
bus reset handler.

Signed-off-by: default avatarPeter Chen <peter.chen@freescale.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 5ca1ccda
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -692,10 +692,8 @@ __acquires(ci->lock)
	int retval;

	spin_unlock(&ci->lock);
	if (ci->gadget.speed != USB_SPEED_UNKNOWN) {
		if (ci->driver)
			ci->driver->disconnect(&ci->gadget);
	}
	if (ci->gadget.speed != USB_SPEED_UNKNOWN)
		usb_gadget_udc_reset(&ci->gadget, ci->driver);

	retval = _gadget_stop_activity(&ci->gadget);
	if (retval)
@@ -709,8 +707,6 @@ __acquires(ci->lock)
	if (ci->status == NULL)
		retval = -ENOMEM;

	usb_gadget_set_state(&ci->gadget, USB_STATE_DEFAULT);

done:
	spin_lock(&ci->lock);