diff options
author | Arik Nemtsov <arik@wizery.com> | 2012-05-10 13:13:25 +0400 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2012-06-05 16:55:12 +0400 |
commit | 872b345fbaef290f890d0bbd34b78ab50269980f (patch) | |
tree | 60b8391184c5e483a06501fa0542c50e5d8feab7 /drivers/net/wireless/ti/wl18xx/wl18xx.h | |
parent | 30e2dd798dbd5929f981ec0c77ab8567e8859ad9 (diff) | |
download | linux-872b345fbaef290f890d0bbd34b78ab50269980f.tar.xz |
wl18xx: implement immediate Tx completion
Implement immediate Tx completion for the 18xx family. Move 18xx
specific Tx code to new tx.c/h files and create helper header files
for definitions.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/ti/wl18xx/wl18xx.h')
-rw-r--r-- | drivers/net/wireless/ti/wl18xx/wl18xx.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ti/wl18xx/wl18xx.h b/drivers/net/wireless/ti/wl18xx/wl18xx.h index 68ef5ba2f607..d24f9c0fd277 100644 --- a/drivers/net/wireless/ti/wl18xx/wl18xx.h +++ b/drivers/net/wireless/ti/wl18xx/wl18xx.h @@ -28,6 +28,9 @@ struct wl18xx_priv { /* buffer for sending commands to FW */ u8 cmd_buf[WL18XX_CMD_MAX_SIZE]; + + /* Index of last released Tx desc in FW */ + u8 last_fw_rls_idx; }; #define WL18XX_FW_MAX_TX_STATUS_DESC 33 |