Commit 70b72731 authored by Jérôme Pouiller's avatar Jérôme Pouiller Committed by Greg Kroah-Hartman
Browse files

staging: wfx: drop useless queue_id field

parent 365fdf7e
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -134,11 +134,9 @@ void wfx_tx_queues_init(struct wfx_dev *wdev)
	skb_queue_head_init(&wdev->tx_queue_stats.pending);
	init_waitqueue_head(&wdev->tx_queue_stats.wait_link_id_empty);

	for (i = 0; i < IEEE80211_NUM_ACS; ++i) {
		wdev->tx_queue[i].queue_id = i;
	for (i = 0; i < IEEE80211_NUM_ACS; ++i)
		skb_queue_head_init(&wdev->tx_queue[i].queue);
}
}

void wfx_tx_queues_deinit(struct wfx_dev *wdev)
{
+0 −1
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@ struct wfx_vif;
struct wfx_queue {
	struct sk_buff_head	queue;
	int			link_map_cache[WFX_LINK_ID_MAX];
	u8			queue_id;
};

struct wfx_queue_stats {