Commit 250bb6f0 authored by David S. Miller's avatar David S. Miller
Browse files

staging: rtl8192e: Use __skb_peek().



Instead of direct list head pointer accesses.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1173ab7b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1149,7 +1149,7 @@ static enum reset_type _rtl92e_tx_check_stuck(struct net_device *dev)
		if (skb_queue_len(&ring->queue) == 0) {
			continue;
		} else {
			skb = (&ring->queue)->next;
			skb = __skb_peek(&ring->queue);
			tcb_desc = (struct cb_desc *)(skb->cb +
				    MAX_DEV_ADDR_SIZE);
			tcb_desc->nStuckCount++;