USB: xhci: use xhci_handle_event instead of handle_event
[deliverable/linux.git] / drivers / usb / host / xhci-ring.c
index f967a6df83c70a85252276ac407cb3313cf5cd4c..1feca20612d13cbb561e650d3fdb29c3360fc0b8 100644 (file)
@@ -1009,7 +1009,7 @@ cleanup:
  * This function handles all OS-owned events on the event ring.  It may drop
  * xhci->lock between event processing (e.g. to pass up port status changes).
  */
-void handle_event(struct xhci_hcd *xhci)
+void xhci_handle_event(struct xhci_hcd *xhci)
 {
        union xhci_trb *event;
        int update_ptrs = 1;
@@ -1054,7 +1054,7 @@ void handle_event(struct xhci_hcd *xhci)
                set_hc_event_deq(xhci);
        }
        /* Are there more items on the event ring? */
-       handle_event(xhci);
+       xhci_handle_event(xhci);
 }
 
 /****          Endpoint Ring Operations        ****/
This page took 0.10941 seconds and 5 git commands to generate.