diff options
Diffstat (limited to 'drivers/usb/host/xhci-ring.c')
-rw-r--r-- | drivers/usb/host/xhci-ring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index f967a6df83c7..1feca20612d1 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c | |||
@@ -1009,7 +1009,7 @@ cleanup: | |||
1009 | * This function handles all OS-owned events on the event ring. It may drop | 1009 | * This function handles all OS-owned events on the event ring. It may drop |
1010 | * xhci->lock between event processing (e.g. to pass up port status changes). | 1010 | * xhci->lock between event processing (e.g. to pass up port status changes). |
1011 | */ | 1011 | */ |
1012 | void handle_event(struct xhci_hcd *xhci) | 1012 | void xhci_handle_event(struct xhci_hcd *xhci) |
1013 | { | 1013 | { |
1014 | union xhci_trb *event; | 1014 | union xhci_trb *event; |
1015 | int update_ptrs = 1; | 1015 | int update_ptrs = 1; |
@@ -1054,7 +1054,7 @@ void handle_event(struct xhci_hcd *xhci) | |||
1054 | set_hc_event_deq(xhci); | 1054 | set_hc_event_deq(xhci); |
1055 | } | 1055 | } |
1056 | /* Are there more items on the event ring? */ | 1056 | /* Are there more items on the event ring? */ |
1057 | handle_event(xhci); | 1057 | xhci_handle_event(xhci); |
1058 | } | 1058 | } |
1059 | 1059 | ||
1060 | /**** Endpoint Ring Operations ****/ | 1060 | /**** Endpoint Ring Operations ****/ |