aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/wl1271.h
diff options
context:
space:
mode:
authorJuuso Oikarinen <juuso.oikarinen@nokia.com>2010-02-22 01:38:31 -0500
committerJohn W. Linville <linville@tuxdriver.com>2010-03-09 15:03:01 -0500
commitffb591cd0e32d817bdbd359dead3baa770b999f8 (patch)
treeeb4ff124e93543fce011e634de3c3c0ac677ca2a /drivers/net/wireless/wl12xx/wl1271.h
parent93c5bb68c89eff0cd41afce8ac932d12cc9d7ae8 (diff)
wl1271: Improvements to the TX path
- Fix a TX result overflow problem that was present in the TX path and visible with at least linksys AP's (probably any AP with high throughput capability.) - Optimize TX by writing FW trigger for a group of TX frames instead of each and every frame. - Slightly optimize the TX path code. Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com> Reviewed-by: Kalle Valo <kalle.valo@nokia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271.h')
-rw-r--r--drivers/net/wireless/wl12xx/wl1271.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271.h b/drivers/net/wireless/wl12xx/wl1271.h
index 10135c94e20e..cc974eae009e 100644
--- a/drivers/net/wireless/wl12xx/wl1271.h
+++ b/drivers/net/wireless/wl12xx/wl1271.h
@@ -396,10 +396,10 @@ struct wl1271 {
396 /* Accounting for allocated / available TX blocks on HW */ 396 /* Accounting for allocated / available TX blocks on HW */
397 u32 tx_blocks_freed[NUM_TX_QUEUES]; 397 u32 tx_blocks_freed[NUM_TX_QUEUES];
398 u32 tx_blocks_available; 398 u32 tx_blocks_available;
399 u8 tx_results_count; 399 u32 tx_results_count;
400 400
401 /* Transmitted TX packets counter for chipset interface */ 401 /* Transmitted TX packets counter for chipset interface */
402 int tx_packets_count; 402 u32 tx_packets_count;
403 403
404 /* Time-offset between host and chipset clocks */ 404 /* Time-offset between host and chipset clocks */
405 int time_offset; 405 int time_offset;