Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 46c37672 authored by David S. Miller's avatar David S. Miller
Browse files

rtl8187: Remove pointless check in rtl8187_rx_cb().



First of all, it exposes the SKB list implementation.

Second of all it's not needed.  If we get called here, we
successfully enqueued the URB with the linked SKB and
such a completion only gets called one time on such an
SKB.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a1091aae
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -321,12 +321,7 @@ static void rtl8187_rx_cb(struct urb *urb)
	unsigned long f;

	spin_lock_irqsave(&priv->rx_queue.lock, f);
	if (skb->next)
	__skb_unlink(skb, &priv->rx_queue);
	else {
		spin_unlock_irqrestore(&priv->rx_queue.lock, f);
		return;
	}
	spin_unlock_irqrestore(&priv->rx_queue.lock, f);
	skb_put(skb, urb->actual_length);