aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/dev.h
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2007-12-09 12:37:27 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:06:22 -0500
commit2abdc0b7756ece70b1f0fd65a651bf8ce487a223 (patch)
tree02f4e118f0e7eaa8ee05dbcdfa6ec7f4cffb1263 /drivers/net/wireless/libertas/dev.h
parent020bb19e2f8cfebb314b8bce4bc48a511c6f5940 (diff)
libertas: kill internal tx queue for PS mode
It was buggy as hell anyway, since it was just spewing packets at the device when it wasn't necessarily ready for them (in the USB case, while the URB was still busy). We could probably do with a better way of flushing packets to the device _immediately_, before we stick it back into sleep mode. But we can no longer just dequeue packets directly, it seems. Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/dev.h')
-rw-r--r--drivers/net/wireless/libertas/dev.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/wireless/libertas/dev.h b/drivers/net/wireless/libertas/dev.h
index 21b0d382096b..a9c3adc421b7 100644
--- a/drivers/net/wireless/libertas/dev.h
+++ b/drivers/net/wireless/libertas/dev.h
@@ -197,11 +197,6 @@ struct lbs_private {
197 /** Timers */ 197 /** Timers */
198 struct timer_list command_timer; 198 struct timer_list command_timer;
199 199
200 /* TX queue used in PS mode */
201 spinlock_t txqueue_lock;
202 struct sk_buff *tx_queue_ps[NR_TX_QUEUE];
203 unsigned int tx_queue_idx;
204
205 u8 hisregcpy; 200 u8 hisregcpy;
206 201
207 /** current ssid/bssid related parameters*/ 202 /** current ssid/bssid related parameters*/