提交 66a45503 编写于 作者: K Kees Cook 提交者: Greg Kroah-Hartman

xhci: Convert timers to use timer_setup()

In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly.

Cc: Mathias Nyman <mathias.nyman@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Signed-off-by: NKees Cook <keescook@chromium.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 707a123d
...@@ -800,8 +800,8 @@ void xhci_free_stream_info(struct xhci_hcd *xhci, ...@@ -800,8 +800,8 @@ void xhci_free_stream_info(struct xhci_hcd *xhci,
static void xhci_init_endpoint_timer(struct xhci_hcd *xhci, static void xhci_init_endpoint_timer(struct xhci_hcd *xhci,
struct xhci_virt_ep *ep) struct xhci_virt_ep *ep)
{ {
setup_timer(&ep->stop_cmd_timer, xhci_stop_endpoint_command_watchdog, timer_setup(&ep->stop_cmd_timer, xhci_stop_endpoint_command_watchdog,
(unsigned long)ep); 0);
ep->xhci = xhci; ep->xhci = xhci;
} }
......
...@@ -947,15 +947,12 @@ void xhci_hc_died(struct xhci_hcd *xhci) ...@@ -947,15 +947,12 @@ void xhci_hc_died(struct xhci_hcd *xhci)
* Instead we use a combination of that flag and checking if a new timer is * Instead we use a combination of that flag and checking if a new timer is
* pending. * pending.
*/ */
void xhci_stop_endpoint_command_watchdog(unsigned long arg) void xhci_stop_endpoint_command_watchdog(struct timer_list *t)
{ {
struct xhci_hcd *xhci; struct xhci_virt_ep *ep = from_timer(ep, t, stop_cmd_timer);
struct xhci_virt_ep *ep; struct xhci_hcd *xhci = ep->xhci;
unsigned long flags; unsigned long flags;
ep = (struct xhci_virt_ep *) arg;
xhci = ep->xhci;
spin_lock_irqsave(&xhci->lock, flags); spin_lock_irqsave(&xhci->lock, flags);
/* bail out if cmd completed but raced with stop ep watchdog timer.*/ /* bail out if cmd completed but raced with stop ep watchdog timer.*/
......
...@@ -2076,7 +2076,7 @@ void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci, ...@@ -2076,7 +2076,7 @@ void xhci_queue_new_dequeue_state(struct xhci_hcd *xhci,
struct xhci_dequeue_state *deq_state); struct xhci_dequeue_state *deq_state);
void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci, unsigned int ep_index, void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci, unsigned int ep_index,
unsigned int stream_id, struct xhci_td *td); unsigned int stream_id, struct xhci_td *td);
void xhci_stop_endpoint_command_watchdog(unsigned long arg); void xhci_stop_endpoint_command_watchdog(struct timer_list *t);
void xhci_handle_command_timeout(struct work_struct *work); void xhci_handle_command_timeout(struct work_struct *work);
void xhci_ring_ep_doorbell(struct xhci_hcd *xhci, unsigned int slot_id, void xhci_ring_ep_doorbell(struct xhci_hcd *xhci, unsigned int slot_id,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册