Skip to content

Commit

Permalink
iwlwifi: mark 4965 ucode types
Browse files Browse the repository at this point in the history
This patch marks 4965 ucode types.

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Tomas Winkler authored and John W. Linville committed Jun 3, 2008
1 parent 95b1a82 commit 2d87889
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions drivers/net/wireless/iwlwifi/iwl-4965.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,10 @@ static int iwl4965_load_bsm(struct iwl_priv *priv)

/* Tell bootstrap uCode where to find the "Initialize" uCode
* in host DRAM ... host DRAM physical address bits 35:4 for 4965.
* NOTE: iwl4965_initialize_alive_start() will replace these values,
* NOTE: iwl_init_alive_start() will replace these values,
* after the "initialize" uCode has run, to point to
* runtime/protocol instructions and backup data cache. */
* runtime/protocol instructions and backup data cache.
*/
pinst = priv->ucode_init.p_addr >> 4;
pdata = priv->ucode_init_data.p_addr >> 4;
inst_len = priv->ucode_init.len;
Expand Down Expand Up @@ -220,6 +221,8 @@ static int iwl4965_load_bsm(struct iwl_priv *priv)

iwl_release_nic_access(priv);

priv->ucode_type = UCODE_INIT;

return 0;
}

Expand Down Expand Up @@ -266,6 +269,8 @@ static int iwl4965_set_ucode_ptrs(struct iwl_priv *priv)

IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");

priv->ucode_type = UCODE_RT;

return ret;
}

Expand Down

0 comments on commit 2d87889

Please sign in to comment.