Browse Source

iwl3945: use iwl_get_hw_mode

Use iwl_get_hw_mode for 3945.

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>
Kolekar, Abhijeet 16 years ago
parent
commit
cbba18c6e3
1 changed files with 2 additions and 8 deletions
  1. 2 8
      drivers/net/wireless/iwlwifi/iwl3945-base.c

+ 2 - 8
drivers/net/wireless/iwlwifi/iwl3945-base.c

@@ -94,12 +94,6 @@ struct iwl_mod_params iwl3945_mod_params = {
 	/* the rest are 0 by default */
 	/* the rest are 0 by default */
 };
 };
 
 
-static const struct ieee80211_supported_band *iwl3945_get_band(
-		struct iwl_priv *priv, enum ieee80211_band band)
-{
-	return priv->hw->wiphy->bands[band];
-}
-
 /*************** DMA-QUEUE-GENERAL-FUNCTIONS  *****
 /*************** DMA-QUEUE-GENERAL-FUNCTIONS  *****
  * DMA services
  * DMA services
  *
  *
@@ -2462,7 +2456,7 @@ static void iwl3945_set_rate(struct iwl_priv *priv)
 	struct ieee80211_rate *rate;
 	struct ieee80211_rate *rate;
 	int i;
 	int i;
 
 
-	sband = iwl3945_get_band(priv, priv->band);
+	sband = iwl_get_hw_mode(priv, priv->band);
 	if (!sband) {
 	if (!sband) {
 		IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
 		IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
 		return;
 		return;
@@ -4537,7 +4531,7 @@ static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
 	u16 active_dwell = 0;
 	u16 active_dwell = 0;
 	int added, i;
 	int added, i;
 
 
-	sband = iwl3945_get_band(priv, band);
+	sband = iwl_get_hw_mode(priv, band);
 	if (!sband)
 	if (!sband)
 		return 0;
 		return 0;