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

Commit cf0b1d13 authored by Bo Shen's avatar Bo Shen Committed by Felipe Balbi
Browse files

usb: gadget: atmel_usba_udc: remove 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 ba7cc772
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -1007,19 +1007,10 @@ static struct usb_endpoint_descriptor usba_ep0_desc = {
	.bInterval = 1,
};

static void nop_release(struct device *dev)
{

}

static struct usb_gadget usba_gadget_template = {
	.ops		= &usba_udc_ops,
	.max_speed	= USB_SPEED_HIGH,
	.name		= "atmel_usba_udc",
	.dev	= {
		.init_name	= "gadget",
		.release	= nop_release,
	},
};

/*