Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75648
b: refs/heads/master
c: a781cf9
h: refs/heads/master
v: v3
  • Loading branch information
Reinette Chatre authored and David S. Miller committed Jan 23, 2008
1 parent 23cc001 commit bb791b9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1e34a11d55c9437775367d72ad03f9af99e78bd0
refs/heads/master: a781cf94e6dcc09bf13e548298185d916d9ff3c8
5 changes: 5 additions & 0 deletions trunk/drivers/net/wireless/iwlwifi/iwl3945-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -6342,6 +6342,11 @@ static int __iwl_up(struct iwl_priv *priv)
return 0;
}

if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
IWL_ERROR("ucode not available for device bringup\n");
return -EIO;
}

iwl_write32(priv, CSR_INT, 0xFFFFFFFF);

rc = iwl_hw_nic_init(priv);
Expand Down
5 changes: 5 additions & 0 deletions trunk/drivers/net/wireless/iwlwifi/iwl4965-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -6698,6 +6698,11 @@ static int __iwl_up(struct iwl_priv *priv)
return 0;
}

if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
IWL_ERROR("ucode not available for device bringup\n");
return -EIO;
}

iwl_write32(priv, CSR_INT, 0xFFFFFFFF);

rc = iwl_hw_nic_init(priv);
Expand Down

0 comments on commit bb791b9

Please sign in to comment.