Skip to content

Commit

Permalink
iwl3945: add set_pwr_src
Browse files Browse the repository at this point in the history
The patch adds 3945 iwl_lib_ops->set_pwr_src to the driver

Signed-off-by: Abhijeet Kolekar <abhijeet.kolekar@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Kolekar, Abhijeet authored and John W. Linville committed Jan 29, 2009
1 parent 01ec616 commit 854682e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions drivers/net/wireless/iwlwifi/iwl-3945.c
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ u8 iwl3945_sync_sta(struct iwl_priv *priv, int sta_id, u16 tx_rate, u8 flags)
return sta_id;
}

static int iwl3945_nic_set_pwr_src(struct iwl_priv *priv, int pwr_max)
static int iwl3945_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
{
int rc;
unsigned long flags;
Expand All @@ -931,7 +931,7 @@ static int iwl3945_nic_set_pwr_src(struct iwl_priv *priv, int pwr_max)
return rc;
}

if (!pwr_max) {
if (src == IWL_PWR_SRC_VAUX) {
u32 val;

rc = pci_read_config_dword(priv->pci_dev,
Expand Down Expand Up @@ -1195,7 +1195,10 @@ int iwl3945_hw_nic_init(struct iwl_priv *priv)
return rc;
IWL_DEBUG_INFO("HW Revision ID = 0x%X\n", rev_id);

iwl3945_nic_set_pwr_src(priv, 1);
rc = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN);
if(rc)
return rc;

priv->cfg->ops->lib->apm_ops.config(priv);

/* Allocate the RX queue, or reset if it is already allocated */
Expand Down Expand Up @@ -2694,6 +2697,7 @@ static struct iwl_lib_ops iwl3945_lib = {
.reset = iwl3945_apm_reset,
.stop = iwl3945_apm_stop,
.config = iwl3945_nic_config,
.set_pwr_src = iwl3945_set_pwr_src,
},
};

Expand Down

0 comments on commit 854682e

Please sign in to comment.