There is no need to init this field at runtime, so init it statically.

Signed-off-by: Marek Vasut <[email protected]>
Cc: Fabio Estevam <[email protected]>
Cc: Lei Wen <[email protected]>
Cc: Otavio Salvador <[email protected]>
Cc: Stefano Babic <[email protected]>
---
 drivers/usb/gadget/mv_udc.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/usb/gadget/mv_udc.c b/drivers/usb/gadget/mv_udc.c
index 04e46e1..8fa9781 100644
--- a/drivers/usb/gadget/mv_udc.c
+++ b/drivers/usb/gadget/mv_udc.c
@@ -114,8 +114,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,
        },
 };
 
@@ -443,7 +444,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++) {
-- 
1.7.10.4

_______________________________________________
U-Boot mailing list
[email protected]
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to