staging: vt6656: rename PIPEnsSendBulkOut to vnt_tx_context.
authorMalcolm Priestley <tvboxspy@gmail.com>
Tue, 15 Jul 2014 18:54:39 +0000 (19:54 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Jul 2014 19:11:39 +0000 (12:11 -0700)
We are just tx the context

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/rxtx.c
drivers/staging/vt6656/usbpipe.c
drivers/staging/vt6656/usbpipe.h

index 1f1ec04..76b7f17 100644 (file)
@@ -928,7 +928,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
 
        spin_lock_irqsave(&priv->lock, flags);
 
-       if (PIPEnsSendBulkOut(priv, tx_context) != STATUS_PENDING) {
+       if (vnt_tx_context(priv, tx_context) != STATUS_PENDING) {
                spin_unlock_irqrestore(&priv->lock, flags);
                return -EIO;
        }
@@ -1022,7 +1022,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv,
 
        spin_lock_irqsave(&priv->lock, flags);
 
-       if (PIPEnsSendBulkOut(priv, context) != STATUS_PENDING)
+       if (vnt_tx_context(priv, context) != STATUS_PENDING)
                ieee80211_free_txskb(priv->hw, context->skb);
 
        spin_unlock_irqrestore(&priv->lock, flags);
Simple merge
Simple merge