Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79225
b: refs/heads/master
c: d9896ee
h: refs/heads/master
i:
  79223: 7150102
v: v3
  • Loading branch information
David Woodhouse authored and David S. Miller committed Jan 28, 2008
1 parent 1ff0a3d commit a266d5d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 28 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: 8e5b6b2d32304f4d6a096a6dfae23d12dc6f9287
refs/heads/master: d9896ee14768e3dd6ce2f57a0d518b5b18a924a1
36 changes: 9 additions & 27 deletions trunk/drivers/net/wireless/libertas/cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,10 @@ void lbs_queue_cmd(struct lbs_private *priv,
lbs_deb_host("QUEUE_CMD: cmdnode or cmdbuf is NULL\n");
goto done;
}
if (!cmdnode->cmdbuf->size) {
lbs_deb_host("DNLD_CMD: cmd size is zero\n");
goto done;
}

/* Exit_PS command needs to be queued in the header always. */
if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
Expand Down Expand Up @@ -1197,15 +1201,8 @@ void lbs_queue_cmd(struct lbs_private *priv,
lbs_deb_leave(LBS_DEB_HOST);
}

/*
* TODO: Fix the issue when DownloadcommandToStation is being called the
* second time when the command times out. All the cmdptr->xxx are in little
* endian and therefore all the comparissions will fail.
* For now - we are not performing the endian conversion the second time - but
* for PS and DEEP_SLEEP we need to worry
*/
static int DownloadcommandToStation(struct lbs_private *priv,
struct cmd_ctrl_node *cmdnode)
static int lbs_submit_command(struct lbs_private *priv,
struct cmd_ctrl_node *cmdnode)
{
unsigned long flags;
struct cmd_header *cmd;
Expand All @@ -1215,21 +1212,9 @@ static int DownloadcommandToStation(struct lbs_private *priv,

lbs_deb_enter(LBS_DEB_HOST);

if (!priv || !cmdnode) {
lbs_deb_host("DNLD_CMD: priv or cmdmode is NULL\n");
goto done;
}

cmd = cmdnode->cmdbuf;

spin_lock_irqsave(&priv->driver_lock, flags);
if (!cmd || !cmd->size) {
lbs_deb_host("DNLD_CMD: cmdptr is NULL or zero\n");
__lbs_cleanup_and_insert_cmd(priv, cmdnode);
spin_unlock_irqrestore(&priv->driver_lock, flags);
goto done;
}

priv->cur_cmd = cmdnode;
priv->cur_cmd_retcode = 0;
spin_unlock_irqrestore(&priv->driver_lock, flags);
Expand All @@ -1241,12 +1226,9 @@ static int DownloadcommandToStation(struct lbs_private *priv,
command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);

cmdnode->cmdwaitqwoken = 0;

ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);

if (ret != 0) {
lbs_deb_host("DNLD_CMD: hw_host_to_card failed\n");
if (ret) {
lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
spin_lock_irqsave(&priv->driver_lock, flags);
priv->cur_cmd_retcode = ret;
__lbs_cleanup_and_insert_cmd(priv, priv->cur_cmd);
Expand Down Expand Up @@ -1952,7 +1934,7 @@ int lbs_execute_next_command(struct lbs_private *priv)
list_del(&cmdnode->list);
lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
le16_to_cpu(cmd->command));
DownloadcommandToStation(priv, cmdnode);
lbs_submit_command(priv, cmdnode);
} else {
/*
* check if in power save mode, if yes, put the device back
Expand Down

0 comments on commit a266d5d

Please sign in to comment.