Commit 31fb6014 authored by Ido Shayevitz's avatar Ido Shayevitz Committed by Felipe Balbi

usb: gadget: Update ci13xxx_udc to use usb_endpoint_descriptor inside the struct usb_ep

Remove redundant pointer to struct usb_endpoint_descriptor.
Signed-off-by: default avatarIdo Shayevitz <idos@codeaurora.org>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 3cdb7721
...@@ -1916,7 +1916,7 @@ __acquires(udc->lock) ...@@ -1916,7 +1916,7 @@ __acquires(udc->lock)
int type, num, dir, err = -EINVAL; int type, num, dir, err = -EINVAL;
struct usb_ctrlrequest req; struct usb_ctrlrequest req;
if (mEp->desc == NULL) if (mEp->ep.desc == NULL)
continue; /* not configured */ continue; /* not configured */
if (hw_test_and_clear_complete(i)) { if (hw_test_and_clear_complete(i)) {
...@@ -2109,7 +2109,7 @@ static int ep_enable(struct usb_ep *ep, ...@@ -2109,7 +2109,7 @@ static int ep_enable(struct usb_ep *ep,
/* only internal SW should enable ctrl endpts */ /* only internal SW should enable ctrl endpts */
mEp->desc = desc; mEp->ep.desc = desc;
if (!list_empty(&mEp->qh.queue)) if (!list_empty(&mEp->qh.queue))
warn("enabling a non-empty endpoint!"); warn("enabling a non-empty endpoint!");
...@@ -2161,7 +2161,7 @@ static int ep_disable(struct usb_ep *ep) ...@@ -2161,7 +2161,7 @@ static int ep_disable(struct usb_ep *ep)
if (ep == NULL) if (ep == NULL)
return -EINVAL; return -EINVAL;
else if (mEp->desc == NULL) else if (mEp->ep.desc == NULL)
return -EBUSY; return -EBUSY;
spin_lock_irqsave(mEp->lock, flags); spin_lock_irqsave(mEp->lock, flags);
...@@ -2180,7 +2180,6 @@ static int ep_disable(struct usb_ep *ep) ...@@ -2180,7 +2180,6 @@ static int ep_disable(struct usb_ep *ep)
} while (mEp->dir != direction); } while (mEp->dir != direction);
mEp->desc = NULL;
mEp->ep.desc = NULL; mEp->ep.desc = NULL;
spin_unlock_irqrestore(mEp->lock, flags); spin_unlock_irqrestore(mEp->lock, flags);
...@@ -2269,7 +2268,7 @@ static int ep_queue(struct usb_ep *ep, struct usb_request *req, ...@@ -2269,7 +2268,7 @@ static int ep_queue(struct usb_ep *ep, struct usb_request *req,
trace("%p, %p, %X", ep, req, gfp_flags); trace("%p, %p, %X", ep, req, gfp_flags);
if (ep == NULL || req == NULL || mEp->desc == NULL) if (ep == NULL || req == NULL || mEp->ep.desc == NULL)
return -EINVAL; return -EINVAL;
spin_lock_irqsave(mEp->lock, flags); spin_lock_irqsave(mEp->lock, flags);
...@@ -2332,7 +2331,7 @@ static int ep_dequeue(struct usb_ep *ep, struct usb_request *req) ...@@ -2332,7 +2331,7 @@ static int ep_dequeue(struct usb_ep *ep, struct usb_request *req)
trace("%p, %p", ep, req); trace("%p, %p", ep, req);
if (ep == NULL || req == NULL || mReq->req.status != -EALREADY || if (ep == NULL || req == NULL || mReq->req.status != -EALREADY ||
mEp->desc == NULL || list_empty(&mReq->queue) || mEp->ep.desc == NULL || list_empty(&mReq->queue) ||
list_empty(&mEp->qh.queue)) list_empty(&mEp->qh.queue))
return -EINVAL; return -EINVAL;
...@@ -2375,7 +2374,7 @@ static int ep_set_halt(struct usb_ep *ep, int value) ...@@ -2375,7 +2374,7 @@ static int ep_set_halt(struct usb_ep *ep, int value)
trace("%p, %i", ep, value); trace("%p, %i", ep, value);
if (ep == NULL || mEp->desc == NULL) if (ep == NULL || mEp->ep.desc == NULL)
return -EINVAL; return -EINVAL;
spin_lock_irqsave(mEp->lock, flags); spin_lock_irqsave(mEp->lock, flags);
...@@ -2418,7 +2417,7 @@ static int ep_set_wedge(struct usb_ep *ep) ...@@ -2418,7 +2417,7 @@ static int ep_set_wedge(struct usb_ep *ep)
trace("%p", ep); trace("%p", ep);
if (ep == NULL || mEp->desc == NULL) if (ep == NULL || mEp->ep.desc == NULL)
return -EINVAL; return -EINVAL;
spin_lock_irqsave(mEp->lock, flags); spin_lock_irqsave(mEp->lock, flags);
......
...@@ -82,7 +82,6 @@ struct ci13xxx_req { ...@@ -82,7 +82,6 @@ struct ci13xxx_req {
/* Extension of usb_ep */ /* Extension of usb_ep */
struct ci13xxx_ep { struct ci13xxx_ep {
struct usb_ep ep; struct usb_ep ep;
const struct usb_endpoint_descriptor *desc;
u8 dir; u8 dir;
u8 num; u8 num;
u8 type; u8 type;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment