Commit ba7cc772 authored by Bo Shen's avatar Bo Shen Committed by Felipe Balbi

usb: gadget: at91_udc: remove unused release function

As the driver call usb_add_gadget_udc --> usb_add_gadget_udc_release
with NULL as release parameter, so it will use usb_udc_no_release.
So, the release in driver won't used, remove it.

And at the same time, in the usb_add_gadget_udc_release will set the
gadget name, so remove it also in driver.
Signed-off-by: default avatarBo Shen <voice.shen@atmel.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 74df41b4
...@@ -1537,20 +1537,11 @@ static irqreturn_t at91_udc_irq (int irq, void *_udc) ...@@ -1537,20 +1537,11 @@ static irqreturn_t at91_udc_irq (int irq, void *_udc)
/*-------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------*/
static void nop_release(struct device *dev)
{
/* nothing to free */
}
static struct at91_udc controller = { static struct at91_udc controller = {
.gadget = { .gadget = {
.ops = &at91_udc_ops, .ops = &at91_udc_ops,
.ep0 = &controller.ep[0].ep, .ep0 = &controller.ep[0].ep,
.name = driver_name, .name = driver_name,
.dev = {
.init_name = "gadget",
.release = nop_release,
}
}, },
.ep[0] = { .ep[0] = {
.ep = { .ep = {
......
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