}
}
-static void gdm_usb_send_complete_impl(struct urb *urb, bool need_lock)
+static void __gdm_usb_send_complete(struct urb *urb)
{
struct usb_tx *t = urb->context;
struct tx_cxt *tx = t->tx_cxt;
u8 *pkt = t->buf;
u16 cmd_evt;
- unsigned long flags;
/* Completion by usb_unlink_urb */
if (urb->status == -ECONNRESET)
return;
- if (need_lock)
- spin_lock_irqsave(&tx->lock, flags);
-
if (t->callback)
t->callback(t->cb_data);
put_tx_struct(tx, t);
else
free_tx_struct(t);
-
- if (need_lock)
- spin_unlock_irqrestore(&tx->lock, flags);
}
static void gdm_usb_send_complete(struct urb *urb)
{
- gdm_usb_send_complete_impl(urb, true);
-}
+ struct usb_tx *t = urb->context;
+ struct tx_cxt *tx = t->tx_cxt;
+ unsigned long flags;
-static void gdm_usb_send_complete_no_lock(struct urb *urb)
-{
- gdm_usb_send_complete_impl(urb, false);
+ spin_lock_irqsave(&tx->lock, flags);
+ __gdm_usb_send_complete(urb);
+ spin_unlock_irqrestore(&tx->lock, flags);
}
static int gdm_usb_send(void *priv_dev, void *data, int len,
send_fail:
t->callback = NULL;
- gdm_usb_send_complete_no_lock(t->urb);
+ __gdm_usb_send_complete(t->urb);
spin_unlock_irqrestore(&tx->lock, flags);
return ret;
}
if (ret) {
t->callback = NULL;
- gdm_usb_send_complete_no_lock(t->urb);
+ __gdm_usb_send_complete(t->urb);
}
}
}
if (ret) {
t->callback = NULL;
- gdm_usb_send_complete_no_lock(t->urb);
+ __gdm_usb_send_complete(t->urb);
}
}