mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
usb: mv_udc: Init mv_drv.gadget.ops statically
There is no need to init this field at runtime, so init it statically. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Fabio Estevam <fabio.estevam@freescale.com> Cc: Lei Wen <leiwen@marvell.com> Cc: Otavio Salvador <otavio@ossystems.com.br> Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
f646317739
commit
fe48f05817
1 changed files with 3 additions and 3 deletions
|
@ -98,8 +98,9 @@ static const struct usb_ep mv_ep_init[2] = {
|
|||
};
|
||||
|
||||
static struct mv_drv controller = {
|
||||
.gadget = {
|
||||
.name = "mv_udc",
|
||||
.gadget = {
|
||||
.name = "mv_udc",
|
||||
.ops = &mv_udc_ops,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -427,7 +428,6 @@ static int mvudc_probe(void)
|
|||
int i;
|
||||
const int num = 2 * NUM_ENDPOINTS;
|
||||
|
||||
controller.gadget.ops = &mv_udc_ops;
|
||||
epts = memalign(PAGE_SIZE, num * sizeof(struct ept_queue_head));
|
||||
memset(epts, 0, num * sizeof(struct ept_queue_head));
|
||||
for (i = 0; i < 2 * NUM_ENDPOINTS; i++) {
|
||||
|
|
Loading…
Reference in a new issue