usb: gadget: add usb_endpoint_descriptor to struct usb_ep
[pandora-kernel.git] / drivers / usb / gadget / f_mass_storage.c
index efb58f9..4eee434 100644 (file)
@@ -2330,7 +2330,8 @@ static int enable_endpoint(struct fsg_common *common, struct usb_ep *ep,
        int     rc;
 
        ep->driver_data = common;
-       rc = usb_ep_enable(ep, d);
+       ep->desc = (struct usb_endpoint_descriptor *)d;
+       rc = usb_ep_enable(ep);
        if (rc)
                ERROR(common, "can't enable %s, result %d\n", ep->name, rc);
        return rc;