usb: dwc3: move gadget prototypes to core.h
authorFelipe Balbi <balbi@ti.com>
Wed, 12 Oct 2011 11:15:49 +0000 (14:15 +0300)
committerFelipe Balbi <balbi@ti.com>
Mon, 12 Dec 2011 09:48:13 +0000 (11:48 +0200)
host prototypes are there, let's move gadget's
closer.

Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/core.h
drivers/usb/dwc3/gadget.h

index a77554373224fafc8488af6aab105a761d332a38..513a7391099f7415b633a112f809889c1ed4bcfc 100644 (file)
@@ -791,4 +791,7 @@ union dwc3_event {
 int dwc3_host_init(struct dwc3 *dwc);
 void dwc3_host_exit(struct dwc3 *dwc);
 
+int dwc3_gadget_init(struct dwc3 *dwc);
+void dwc3_gadget_exit(struct dwc3 *dwc);
+
 #endif /* __DRIVERS_USB_DWC3_CORE_H */
index 6dec6d94e54787c5b720ad7ec978e415064b743b..5c4a56f055e90eaeb4a404e01d0bb92b027a88e5 100644 (file)
@@ -110,9 +110,6 @@ static inline void dwc3_gadget_move_request_queued(struct dwc3_request *req)
        list_move_tail(&req->list, &dep->req_queued);
 }
 
-int dwc3_gadget_init(struct dwc3 *dwc);
-void dwc3_gadget_exit(struct dwc3 *dwc);
-
 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
                int status);