Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 151421
b: refs/heads/master
c: b7258a4
h: refs/heads/master
i:
  151419: f9f4959
v: v3
  • Loading branch information
Stephen Rothwell authored and Greg Kroah-Hartman committed Jun 16, 2009
1 parent 9135257 commit 4f0eb7a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ae636747146ea97efa18e04576acd3416e2514f5
refs/heads/master: b7258a4aba2b24d5c27a0f6674795e83e7771969
2 changes: 1 addition & 1 deletion trunk/drivers/usb/host/xhci-hcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ static void xhci_work(struct xhci_hcd *xhci)
xhci_readl(xhci, &xhci->ir_set->irq_pending);

/* FIXME this should be a delayed service routine that clears the EHB */
handle_event(xhci);
xhci_handle_event(xhci);

/* Clear the event handler busy flag; the event ring should be empty. */
temp = xhci_readl(xhci, &xhci->ir_set->erst_dequeue[0]);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/usb/host/xhci-ring.c
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ static int handle_tx_event(struct xhci_hcd *xhci,
* 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;
Expand Down Expand Up @@ -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 ****/
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/host/xhci.h
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev);
dma_addr_t trb_virt_to_dma(struct xhci_segment *seg, union xhci_trb *trb);
void ring_cmd_db(struct xhci_hcd *xhci);
void *setup_one_noop(struct xhci_hcd *xhci);
void handle_event(struct xhci_hcd *xhci);
void xhci_handle_event(struct xhci_hcd *xhci);
void set_hc_event_deq(struct xhci_hcd *xhci);
int queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id);
int queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, u32 slot_id);
Expand Down

0 comments on commit 4f0eb7a

Please sign in to comment.