diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-12-17 23:04:37 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:07:48 -0500 |
commit | 6e5cc4fb35c45a8f8478d25c4e89e8d9c543056e (patch) | |
tree | 79b7c15a84df50b8dd19e5a9af873fd947fc7006 /drivers/net/wireless/libertas/cmd.c | |
parent | a7c458906542aacdda7289bb21f527a2dc4097ca (diff) |
libertas: convert INACTIVITY_TIMEOUT to a direct command
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/cmd.c')
-rw-r--r-- | drivers/net/wireless/libertas/cmd.c | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/drivers/net/wireless/libertas/cmd.c b/drivers/net/wireless/libertas/cmd.c index 3a7b82f99cb3..57d17077a6d8 100644 --- a/drivers/net/wireless/libertas/cmd.c +++ b/drivers/net/wireless/libertas/cmd.c | |||
@@ -171,27 +171,30 @@ static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv, | |||
171 | return 0; | 171 | return 0; |
172 | } | 172 | } |
173 | 173 | ||
174 | static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv, | 174 | int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv, |
175 | struct cmd_ds_command *cmd, | 175 | uint16_t cmd_action, uint16_t *timeout) |
176 | u16 cmd_action, void *pdata_buf) | ||
177 | { | 176 | { |
178 | u16 *timeout = pdata_buf; | 177 | struct cmd_ds_802_11_inactivity_timeout cmd; |
178 | int ret; | ||
179 | 179 | ||
180 | lbs_deb_enter(LBS_DEB_CMD); | 180 | lbs_deb_enter(LBS_DEB_CMD); |
181 | 181 | ||
182 | cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT); | 182 | cmd.hdr.command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT); |
183 | cmd->size = | 183 | cmd.hdr.size = cpu_to_le16(sizeof(cmd)); |
184 | cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout) | ||
185 | + S_DS_GEN); | ||
186 | 184 | ||
187 | cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action); | 185 | cmd.action = cpu_to_le16(cmd_action); |
188 | 186 | ||
189 | if (cmd_action) | 187 | if (cmd_action == CMD_ACT_SET) |
190 | cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout); | 188 | cmd.timeout = cpu_to_le16(*timeout); |
191 | else | 189 | else |
192 | cmd->params.inactivity_timeout.timeout = 0; | 190 | cmd.timeout = 0; |
193 | 191 | ||
194 | lbs_deb_leave(LBS_DEB_CMD); | 192 | ret = lbs_cmd_with_response(priv, CMD_802_11_INACTIVITY_TIMEOUT, &cmd); |
193 | |||
194 | if (!ret) | ||
195 | *timeout = le16_to_cpu(cmd.timeout); | ||
196 | |||
197 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); | ||
195 | return 0; | 198 | return 0; |
196 | } | 199 | } |
197 | 200 | ||
@@ -1520,11 +1523,6 @@ int lbs_prepare_and_send_command(struct lbs_private *priv, | |||
1520 | case CMD_802_11_SLEEP_PARAMS: | 1523 | case CMD_802_11_SLEEP_PARAMS: |
1521 | ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action); | 1524 | ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action); |
1522 | break; | 1525 | break; |
1523 | case CMD_802_11_INACTIVITY_TIMEOUT: | ||
1524 | ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr, | ||
1525 | cmd_action, pdata_buf); | ||
1526 | lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf); | ||
1527 | break; | ||
1528 | 1526 | ||
1529 | case CMD_802_11_TPC_CFG: | 1527 | case CMD_802_11_TPC_CFG: |
1530 | cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG); | 1528 | cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG); |