diff options
author | Abhijeet Kolekar <abhijeet.kolekar@intel.com> | 2009-05-08 16:44:41 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-05-11 15:24:01 -0400 |
commit | 43121432e2d3a9018c40e820b1e44f3f180aa0d6 (patch) | |
tree | 38eb0d67ee645519336a61c76ea2e95c432a88fe /drivers/net | |
parent | 9906a07e1607e86957ac8780c35a9acf425c4c95 (diff) |
iwl3945: read rev id in nic config
Read rev id in nic_config instead of nic_init.
Nic_config has some checking for rev_id but we actually don't read
the rev_id in there.
Signed-off-by: Abhijeet Kolekar <abhijeet.kolekar@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-3945.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.c b/drivers/net/wireless/iwlwifi/iwl-3945.c index 41f1d66cfeba..5b0c6e5bda92 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945.c | |||
@@ -1110,6 +1110,11 @@ static void iwl3945_nic_config(struct iwl_priv *priv) | |||
1110 | 1110 | ||
1111 | spin_lock_irqsave(&priv->lock, flags); | 1111 | spin_lock_irqsave(&priv->lock, flags); |
1112 | 1112 | ||
1113 | /* Determine HW type */ | ||
1114 | pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &rev_id); | ||
1115 | |||
1116 | IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", rev_id); | ||
1117 | |||
1113 | if (rev_id & PCI_CFG_REV_ID_BIT_RTP) | 1118 | if (rev_id & PCI_CFG_REV_ID_BIT_RTP) |
1114 | IWL_DEBUG_INFO(priv, "RTP type \n"); | 1119 | IWL_DEBUG_INFO(priv, "RTP type \n"); |
1115 | else if (rev_id & PCI_CFG_REV_ID_BIT_BASIC_SKU) { | 1120 | else if (rev_id & PCI_CFG_REV_ID_BIT_BASIC_SKU) { |
@@ -1163,7 +1168,6 @@ static void iwl3945_nic_config(struct iwl_priv *priv) | |||
1163 | 1168 | ||
1164 | int iwl3945_hw_nic_init(struct iwl_priv *priv) | 1169 | int iwl3945_hw_nic_init(struct iwl_priv *priv) |
1165 | { | 1170 | { |
1166 | u8 rev_id; | ||
1167 | int rc; | 1171 | int rc; |
1168 | unsigned long flags; | 1172 | unsigned long flags; |
1169 | struct iwl_rx_queue *rxq = &priv->rxq; | 1173 | struct iwl_rx_queue *rxq = &priv->rxq; |
@@ -1172,12 +1176,6 @@ int iwl3945_hw_nic_init(struct iwl_priv *priv) | |||
1172 | priv->cfg->ops->lib->apm_ops.init(priv); | 1176 | priv->cfg->ops->lib->apm_ops.init(priv); |
1173 | spin_unlock_irqrestore(&priv->lock, flags); | 1177 | spin_unlock_irqrestore(&priv->lock, flags); |
1174 | 1178 | ||
1175 | /* Determine HW type */ | ||
1176 | rc = pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &rev_id); | ||
1177 | if (rc) | ||
1178 | return rc; | ||
1179 | IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", rev_id); | ||
1180 | |||
1181 | rc = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN); | 1179 | rc = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN); |
1182 | if (rc) | 1180 | if (rc) |
1183 | return rc; | 1181 | return rc; |