Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 203907
b: refs/heads/master
c: 8196112
h: refs/heads/master
i:
  203905: 46ced96
  203903: 922ad8b
v: v3
  • Loading branch information
Dan Williams authored and John W. Linville committed Jul 27, 2010
1 parent 026ebed commit 1e685b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 25 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a6bb1bcebced1eeed6a96f37cda7cbb7cbd6dae6
refs/heads/master: 8196112859a6742b9e25ca5fde972a7f41f06cc3
25 changes: 1 addition & 24 deletions trunk/drivers/net/wireless/libertas/cmdresp.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,28 +54,6 @@ void lbs_mac_event_disconnected(struct lbs_private *priv)
lbs_deb_leave(LBS_DEB_ASSOC);
}

static inline int handle_cmd_response(struct lbs_private *priv,
struct cmd_header *cmd_response)
{
struct cmd_ds_command *resp = (struct cmd_ds_command *) cmd_response;
int ret = 0;
uint16_t respcmd = le16_to_cpu(resp->command);

lbs_deb_enter(LBS_DEB_HOST);

switch (respcmd) {
case CMD_RET(CMD_802_11_BEACON_STOP):
break;

default:
lbs_pr_err("CMD_RESP: unknown cmd response 0x%04x\n",
le16_to_cpu(resp->command));
break;
}
lbs_deb_leave(LBS_DEB_HOST);
return ret;
}

int lbs_process_command_response(struct lbs_private *priv, u8 *data, u32 len)
{
uint16_t respcmd, curcmd;
Expand Down Expand Up @@ -216,8 +194,7 @@ int lbs_process_command_response(struct lbs_private *priv, u8 *data, u32 len)
if (priv->cur_cmd && priv->cur_cmd->callback) {
ret = priv->cur_cmd->callback(priv, priv->cur_cmd->callback_arg,
resp);
} else
ret = handle_cmd_response(priv, resp);
}

spin_lock_irqsave(&priv->driver_lock, flags);

Expand Down

0 comments on commit 1e685b9

Please sign in to comment.