Commit 2fb29f21 authored by Felipe Balbi's avatar Felipe Balbi

usb: gadget: omap_udc: don't assign gadget.dev.release directly

udc-core provides a better way to handle release
methods, let's use it.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 2901df68
...@@ -2628,7 +2628,6 @@ omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv) ...@@ -2628,7 +2628,6 @@ omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv)
udc->gadget.speed = USB_SPEED_UNKNOWN; udc->gadget.speed = USB_SPEED_UNKNOWN;
udc->gadget.max_speed = USB_SPEED_FULL; udc->gadget.max_speed = USB_SPEED_FULL;
udc->gadget.name = driver_name; udc->gadget.name = driver_name;
udc->gadget.dev.release = omap_udc_release;
udc->transceiver = xceiv; udc->transceiver = xceiv;
/* ep0 is special; put it right after the SETUP buffer */ /* ep0 is special; put it right after the SETUP buffer */
...@@ -2902,7 +2901,8 @@ static int omap_udc_probe(struct platform_device *pdev) ...@@ -2902,7 +2901,8 @@ static int omap_udc_probe(struct platform_device *pdev)
} }
create_proc_file(); create_proc_file();
status = usb_add_gadget_udc(&pdev->dev, &udc->gadget); status = usb_add_gadget_udc_release(&pdev->dev, &udc->gadget,
omap_udc_release);
if (status) if (status)
goto cleanup4; goto cleanup4;
......
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