Skip to content

Commit

Permalink
usb: gadget: dummy_hcd: use gadget_to_dummy_hcd() where possible
Browse files Browse the repository at this point in the history
gadget_to_dummy_hcd() already does the speed check, so
it's unnecessary to unroll that all the time.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Sebastian Andrzej Siewior authored and Greg Kroah-Hartman committed Jul 1, 2011
1 parent 99fd140 commit 719e52c
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions drivers/usb/gadget/dummy_hcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,8 @@ dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
dum = ep_to_dummy (ep);
if (!dum->driver)
return -ESHUTDOWN;
if (dum->gadget.speed == USB_SPEED_SUPER)
dum_hcd = dum->ss_hcd;
else
dum_hcd = dum->hs_hcd;

dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
if (!is_enabled(dum_hcd))
return -ESHUTDOWN;

Expand Down Expand Up @@ -631,10 +629,7 @@ dummy_queue (struct usb_ep *_ep, struct usb_request *_req,
return -EINVAL;

dum = ep_to_dummy (ep);
if (dum->gadget.speed == USB_SPEED_SUPER)
dum_hcd = dum->ss_hcd;
else
dum_hcd = dum->hs_hcd;
dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
if (!dum->driver || !is_enabled(dum_hcd))
return -ESHUTDOWN;

Expand Down

0 comments on commit 719e52c

Please sign in to comment.