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

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

p54: Use skb_peek_tail() instead of direct head pointer accesses.

parent 1181d629
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -121,8 +121,8 @@ static int p54_assign_address(struct p54_common *priv, struct sk_buff *skb)
	}
	if (unlikely(!target_skb)) {
		if (priv->rx_end - last_addr >= len) {
			target_skb = priv->tx_queue.prev;
			if (!skb_queue_empty(&priv->tx_queue)) {
			target_skb = skb_peek_tail(&priv->tx_queue);
			if (target_skb) {
				info = IEEE80211_SKB_CB(target_skb);
				range = (void *)info->rate_driver_data;
				target_addr = range->end_addr;