diff options
author | Felipe Balbi <balbi@ti.com> | 2012-01-02 20:55:57 +0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-02-06 13:48:24 +0400 |
commit | 8598bde7fa125e85bc97decd6513d37dcf1e7bd9 (patch) | |
tree | f33eab7bb8bc5e0197165215703dd0308c862d69 /drivers/usb/dwc3/gadget.h | |
parent | 080d921fe7a8d27c07eba7723fe53a3bea100327 (diff) | |
download | linux-8598bde7fa125e85bc97decd6513d37dcf1e7bd9.tar.xz |
usb: dwc3: gadget: re-factor Link state change to a function
Most link changes will, of course, happen with
the help of a matching host HW, but in some cases
we might want to debug very low level details about
the link and exposing this to debugfs sounds like
a good plan.
This is a preparation for such setup.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3/gadget.h')
-rw-r--r-- | drivers/usb/dwc3/gadget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/dwc3/gadget.h b/drivers/usb/dwc3/gadget.h index 2cf6f2989f73..152b6de0649d 100644 --- a/drivers/usb/dwc3/gadget.h +++ b/drivers/usb/dwc3/gadget.h @@ -101,6 +101,7 @@ void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, int status); int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode); +int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state); void dwc3_ep0_interrupt(struct dwc3 *dwc, const struct dwc3_event_depevt *event); |