aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2008-05-15 01:54:15 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-05-21 21:48:05 -0400
commitda6833cb05cd76f4367fa7e4a783bf358c096faf (patch)
tree69f5cc664941f3bc91564fba5068f26eb295b3b9 /drivers/net/wireless
parent9636e583d2c641f8cb32d0681f5052b2885edd79 (diff)
iwlwifi: remove 4965 remainings in iwl-eeprom.c file
The patch cleans up 4965 remaings from iwl-eeprom.c file. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-eeprom.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-eeprom.c b/drivers/net/wireless/iwlwifi/iwl-eeprom.c
index fa306601a550..300ef8e74156 100644
--- a/drivers/net/wireless/iwlwifi/iwl-eeprom.c
+++ b/drivers/net/wireless/iwlwifi/iwl-eeprom.c
@@ -365,11 +365,11 @@ static void iwl_init_band_reference(const struct iwl_priv *priv,
365 ? # x " " : "") 365 ? # x " " : "")
366 366
367/** 367/**
368 * iwl4965_set_fat_chan_info - Copy fat channel info into driver's priv. 368 * iwl_set_fat_chan_info - Copy fat channel info into driver's priv.
369 * 369 *
370 * Does not set up a command, or touch hardware. 370 * Does not set up a command, or touch hardware.
371 */ 371 */
372static int iwl4965_set_fat_chan_info(struct iwl_priv *priv, 372static int iwl_set_fat_chan_info(struct iwl_priv *priv,
373 enum ieee80211_band band, u16 channel, 373 enum ieee80211_band band, u16 channel,
374 const struct iwl_eeprom_channel *eeprom_ch, 374 const struct iwl_eeprom_channel *eeprom_ch,
375 u8 fat_extension_channel) 375 u8 fat_extension_channel)
@@ -542,16 +542,16 @@ int iwl_init_channel_map(struct iwl_priv *priv)
542 fat_extension_chan = HT_IE_EXT_CHANNEL_ABOVE; 542 fat_extension_chan = HT_IE_EXT_CHANNEL_ABOVE;
543 543
544 /* Set up driver's info for lower half */ 544 /* Set up driver's info for lower half */
545 iwl4965_set_fat_chan_info(priv, ieeeband, 545 iwl_set_fat_chan_info(priv, ieeeband,
546 eeprom_ch_index[ch], 546 eeprom_ch_index[ch],
547 &(eeprom_ch_info[ch]), 547 &(eeprom_ch_info[ch]),
548 fat_extension_chan); 548 fat_extension_chan);
549 549
550 /* Set up driver's info for upper half */ 550 /* Set up driver's info for upper half */
551 iwl4965_set_fat_chan_info(priv, ieeeband, 551 iwl_set_fat_chan_info(priv, ieeeband,
552 (eeprom_ch_index[ch] + 4), 552 (eeprom_ch_index[ch] + 4),
553 &(eeprom_ch_info[ch]), 553 &(eeprom_ch_info[ch]),
554 HT_IE_EXT_CHANNEL_BELOW); 554 HT_IE_EXT_CHANNEL_BELOW);
555 } 555 }
556 } 556 }
557 557
@@ -560,7 +560,7 @@ int iwl_init_channel_map(struct iwl_priv *priv)
560EXPORT_SYMBOL(iwl_init_channel_map); 560EXPORT_SYMBOL(iwl_init_channel_map);
561 561
562/* 562/*
563 * iwl_free_channel_map - undo allocations in iwl4965_init_channel_map 563 * iwl_free_channel_map - undo allocations in iwl_init_channel_map
564 */ 564 */
565void iwl_free_channel_map(struct iwl_priv *priv) 565void iwl_free_channel_map(struct iwl_priv *priv)
566{ 566{