usb: gadget: udc-xilinx: add ep capabilities support
authorRobert Baldyga <r.baldyga@samsung.com>
Fri, 31 Jul 2015 14:00:44 +0000 (16:00 +0200)
committerFelipe Balbi <balbi@ti.com>
Tue, 4 Aug 2015 17:26:55 +0000 (12:26 -0500)
Convert endpoint configuration to new capabilities model.

Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/udc/udc-xilinx.c

index 1f24274477ab9352ce582f96bfbfbdd61605d07e..1cbb0ac6b18233c36535a7bd42668e623119c4c5 100644 (file)
@@ -1317,12 +1317,21 @@ static void xudc_eps_init(struct xusb_udc *udc)
                        snprintf(ep->name, EPNAME_SIZE, "ep%d", ep_number);
                        ep->ep_usb.name = ep->name;
                        ep->ep_usb.ops = &xusb_ep_ops;
+
+                       ep->ep_usb.caps.type_iso = true;
+                       ep->ep_usb.caps.type_bulk = true;
+                       ep->ep_usb.caps.type_int = true;
                } else {
                        ep->ep_usb.name = ep0name;
                        usb_ep_set_maxpacket_limit(&ep->ep_usb, EP0_MAX_PACKET);
                        ep->ep_usb.ops = &xusb_ep0_ops;
+
+                       ep->ep_usb.caps.type_control = true;
                }
 
+               ep->ep_usb.caps.dir_in = true;
+               ep->ep_usb.caps.dir_out = true;
+
                ep->udc = udc;
                ep->epnumber = ep_number;
                ep->desc = NULL;
This page took 0.026634 seconds and 5 git commands to generate.