diff options
author | Luciano Coelho <luciano.coelho@nokia.com> | 2009-12-11 08:40:50 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-12-28 16:31:31 -0500 |
commit | 6e92b416b0aa6a59629cc32ee2b27129d73b98b8 (patch) | |
tree | 8514223049b03e3adf169b961769891339f0a511 /drivers/net/wireless/wl12xx/wl1271_conf.h | |
parent | ac9b40fac6983ab30e8b5019a5d2abda200c89d5 (diff) |
wl1271: implement dco itrim parameters setting
Newer firmwares require the dco itrim parameters to be set during
initialization. This patch implements the new ACX function and calls it.
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271_conf.h')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_conf.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_conf.h b/drivers/net/wireless/wl12xx/wl1271_conf.h index a4bd35b0f9fd..905d4287915b 100644 --- a/drivers/net/wireless/wl12xx/wl1271_conf.h +++ b/drivers/net/wireless/wl12xx/wl1271_conf.h | |||
@@ -934,12 +934,21 @@ struct conf_init_settings { | |||
934 | 934 | ||
935 | }; | 935 | }; |
936 | 936 | ||
937 | struct conf_itrim_settings { | ||
938 | /* enable dco itrim */ | ||
939 | u8 enable; | ||
940 | |||
941 | /* moderation timeout in microsecs from the last TX */ | ||
942 | u32 timeout; | ||
943 | }; | ||
944 | |||
937 | struct conf_drv_settings { | 945 | struct conf_drv_settings { |
938 | struct conf_sg_settings sg; | 946 | struct conf_sg_settings sg; |
939 | struct conf_rx_settings rx; | 947 | struct conf_rx_settings rx; |
940 | struct conf_tx_settings tx; | 948 | struct conf_tx_settings tx; |
941 | struct conf_conn_settings conn; | 949 | struct conf_conn_settings conn; |
942 | struct conf_init_settings init; | 950 | struct conf_init_settings init; |
951 | struct conf_itrim_settings itrim; | ||
943 | }; | 952 | }; |
944 | 953 | ||
945 | #endif | 954 | #endif |