提交 978785a3 编写于 作者: T Tomas Winkler 提交者: John W. Linville

iwlwifi: clean up printing

Use IWL_ macros where possible to unify debug output usage.
Define new unconditional printouts IWL_ERR, IWL_WARN, IWL_INFO,
and IWL_CRIT which don't use hidden priv pointer.
Signed-off-by: NTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: NZhu Yi <yi.zhu@intel.com>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 146846ae
...@@ -463,7 +463,8 @@ static int rs_collect_tx_data(struct iwl_rate_scale_data *windows, ...@@ -463,7 +463,8 @@ static int rs_collect_tx_data(struct iwl_rate_scale_data *windows,
* Fill uCode API rate_n_flags field, based on "search" or "active" table. * Fill uCode API rate_n_flags field, based on "search" or "active" table.
*/ */
/* FIXME:RS:remove this function and put the flags statically in the table */ /* FIXME:RS:remove this function and put the flags statically in the table */
static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl, static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
struct iwl_scale_tbl_info *tbl,
int index, u8 use_green) int index, u8 use_green)
{ {
u32 rate_n_flags = 0; u32 rate_n_flags = 0;
...@@ -475,8 +476,7 @@ static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl, ...@@ -475,8 +476,7 @@ static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl,
} else if (is_Ht(tbl->lq_type)) { } else if (is_Ht(tbl->lq_type)) {
if (index > IWL_LAST_OFDM_RATE) { if (index > IWL_LAST_OFDM_RATE) {
printk(KERN_ERR RS_NAME": Invalid HT rate index %d\n", IWL_ERR(priv, "Invalid HT rate index %d\n", index);
index);
index = IWL_LAST_OFDM_RATE; index = IWL_LAST_OFDM_RATE;
} }
rate_n_flags = RATE_MCS_HT_MSK; rate_n_flags = RATE_MCS_HT_MSK;
...@@ -488,8 +488,7 @@ static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl, ...@@ -488,8 +488,7 @@ static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl,
else else
rate_n_flags |= iwl_rates[index].plcp_mimo3; rate_n_flags |= iwl_rates[index].plcp_mimo3;
} else { } else {
printk(KERN_ERR RS_NAME": Invalid tbl->lq_type %d\n", IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
tbl->lq_type);
} }
rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) & rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
...@@ -509,8 +508,7 @@ static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl, ...@@ -509,8 +508,7 @@ static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl,
rate_n_flags |= RATE_MCS_GF_MSK; rate_n_flags |= RATE_MCS_GF_MSK;
if (is_siso(tbl->lq_type) && tbl->is_SGI) { if (is_siso(tbl->lq_type) && tbl->is_SGI) {
rate_n_flags &= ~RATE_MCS_SGI_MSK; rate_n_flags &= ~RATE_MCS_SGI_MSK;
printk(KERN_ERR RS_NAME IWL_ERR(priv, "GF was set with SGI:SISO\n");
": GF was set with SGI:SISO\n");
} }
} }
} }
...@@ -761,7 +759,7 @@ static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta, ...@@ -761,7 +759,7 @@ static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
low = scale_index; low = scale_index;
out: out:
return rate_n_flags_from_tbl(tbl, low, is_green); return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
} }
/* /*
...@@ -1179,7 +1177,7 @@ static int rs_switch_to_mimo2(struct iwl_priv *priv, ...@@ -1179,7 +1177,7 @@ static int rs_switch_to_mimo2(struct iwl_priv *priv,
rate, rate_mask); rate, rate_mask);
return -1; return -1;
} }
tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green); tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n", IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
tbl->current_rate, is_green); tbl->current_rate, is_green);
...@@ -1239,7 +1237,7 @@ static int rs_switch_to_siso(struct iwl_priv *priv, ...@@ -1239,7 +1237,7 @@ static int rs_switch_to_siso(struct iwl_priv *priv,
rate, rate_mask); rate, rate_mask);
return -1; return -1;
} }
tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green); tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n", IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
tbl->current_rate, is_green); tbl->current_rate, is_green);
return 0; return 0;
...@@ -1442,8 +1440,9 @@ static int rs_move_siso_to_other(struct iwl_priv *priv, ...@@ -1442,8 +1440,9 @@ static int rs_move_siso_to_other(struct iwl_priv *priv,
if (tpt >= search_tbl->expected_tpt[index]) if (tpt >= search_tbl->expected_tpt[index])
break; break;
} }
search_tbl->current_rate = rate_n_flags_from_tbl( search_tbl->current_rate =
search_tbl, index, is_green); rate_n_flags_from_tbl(priv, search_tbl,
index, is_green);
goto out; goto out;
} }
tbl->action++; tbl->action++;
...@@ -1554,8 +1553,9 @@ static int rs_move_mimo_to_other(struct iwl_priv *priv, ...@@ -1554,8 +1553,9 @@ static int rs_move_mimo_to_other(struct iwl_priv *priv,
if (tpt >= search_tbl->expected_tpt[index]) if (tpt >= search_tbl->expected_tpt[index])
break; break;
} }
search_tbl->current_rate = rate_n_flags_from_tbl( search_tbl->current_rate =
search_tbl, index, is_green); rate_n_flags_from_tbl(priv, search_tbl,
index, is_green);
goto out; goto out;
} }
...@@ -1947,7 +1947,7 @@ static void rs_rate_scale_perform(struct iwl_priv *priv, ...@@ -1947,7 +1947,7 @@ static void rs_rate_scale_perform(struct iwl_priv *priv,
lq_update: lq_update:
/* Replace uCode's rate table for the destination station. */ /* Replace uCode's rate table for the destination station. */
if (update_lq) { if (update_lq) {
rate = rate_n_flags_from_tbl(tbl, index, is_green); rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
rs_fill_link_cmd(priv, lq_sta, rate); rs_fill_link_cmd(priv, lq_sta, rate);
iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC); iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
} }
...@@ -2031,7 +2031,7 @@ static void rs_rate_scale_perform(struct iwl_priv *priv, ...@@ -2031,7 +2031,7 @@ static void rs_rate_scale_perform(struct iwl_priv *priv,
} }
out: out:
tbl->current_rate = rate_n_flags_from_tbl(tbl, index, is_green); tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
i = index; i = index;
lq_sta->last_txrate_idx = i; lq_sta->last_txrate_idx = i;
...@@ -2084,7 +2084,7 @@ static void rs_initialize_lq(struct iwl_priv *priv, ...@@ -2084,7 +2084,7 @@ static void rs_initialize_lq(struct iwl_priv *priv,
if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type)) if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
rs_toggle_antenna(valid_tx_ant, &rate, tbl); rs_toggle_antenna(valid_tx_ant, &rate, tbl);
rate = rate_n_flags_from_tbl(tbl, rate_idx, use_green); rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
tbl->current_rate = rate; tbl->current_rate = rate;
rs_set_expected_tpt_table(lq_sta, tbl); rs_set_expected_tpt_table(lq_sta, tbl);
rs_fill_link_cmd(NULL, lq_sta, rate); rs_fill_link_cmd(NULL, lq_sta, rate);
......
...@@ -1634,12 +1634,12 @@ static int iwl_read_ucode(struct iwl_priv *priv) ...@@ -1634,12 +1634,12 @@ static int iwl_read_ucode(struct iwl_priv *priv)
goto err_release; goto err_release;
} }
if (api_ver != api_max) if (api_ver != api_max)
IWL_ERROR("Firmware has old API version. Expected v%u, " IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
"got v%u. New firmware can be obtained " "got v%u. New firmware can be obtained "
"from http://www.intellinuxwireless.org.\n", "from http://www.intellinuxwireless.org.\n",
api_max, api_ver); api_max, api_ver);
printk(KERN_INFO DRV_NAME " loaded firmware version %u.%u.%u.%u\n", IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
IWL_UCODE_MAJOR(priv->ucode_ver), IWL_UCODE_MAJOR(priv->ucode_ver),
IWL_UCODE_MINOR(priv->ucode_ver), IWL_UCODE_MINOR(priv->ucode_ver),
IWL_UCODE_API(priv->ucode_ver), IWL_UCODE_API(priv->ucode_ver),
...@@ -3355,8 +3355,7 @@ static ssize_t store_debug_level(struct device *d, ...@@ -3355,8 +3355,7 @@ static ssize_t store_debug_level(struct device *d,
ret = strict_strtoul(buf, 0, &val); ret = strict_strtoul(buf, 0, &val);
if (ret) if (ret)
printk(KERN_INFO DRV_NAME IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
": %s is not in hex or decimal form.\n", buf);
else else
priv->debug_level = val; priv->debug_level = val;
...@@ -3435,8 +3434,7 @@ static ssize_t store_tx_power(struct device *d, ...@@ -3435,8 +3434,7 @@ static ssize_t store_tx_power(struct device *d,
ret = strict_strtoul(buf, 10, &val); ret = strict_strtoul(buf, 10, &val);
if (ret) if (ret)
printk(KERN_INFO DRV_NAME IWL_INFO(priv, "%s is not in decimal form.\n", buf);
": %s is not in decimal form.\n", buf);
else else
iwl_set_tx_power(priv, val, false); iwl_set_tx_power(priv, val, false);
...@@ -3775,8 +3773,7 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -3775,8 +3773,7 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
/* both attempts failed: */ /* both attempts failed: */
if (err) { if (err) {
printk(KERN_WARNING "%s: No suitable DMA available.\n", IWL_WARN(priv, "No suitable DMA available.\n");
DRV_NAME);
goto out_pci_disable_device; goto out_pci_disable_device;
} }
} }
...@@ -3802,8 +3799,7 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -3802,8 +3799,7 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base); IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
iwl_hw_detect(priv); iwl_hw_detect(priv);
printk(KERN_INFO DRV_NAME IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
": Detected Intel Wireless WiFi Link %s REV=0x%X\n",
priv->cfg->name, priv->hw_rev); priv->cfg->name, priv->hw_rev);
/* We disable the RETRY_TIMEOUT register (0x41) to keep /* We disable the RETRY_TIMEOUT register (0x41) to keep
......
...@@ -511,16 +511,14 @@ static int iwlcore_init_geos(struct iwl_priv *priv) ...@@ -511,16 +511,14 @@ static int iwlcore_init_geos(struct iwl_priv *priv)
if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) && if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
priv->cfg->sku & IWL_SKU_A) { priv->cfg->sku & IWL_SKU_A) {
dev_printk(KERN_INFO, &(priv->hw->wiphy->dev), IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
"Incorrectly detected BG card as ABG. Please send " "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
"your PCI ID 0x%04X:0x%04X to maintainer.\n",
priv->pci_dev->device, priv->pci_dev->device,
priv->pci_dev->subsystem_device); priv->pci_dev->subsystem_device);
priv->cfg->sku &= ~IWL_SKU_A; priv->cfg->sku &= ~IWL_SKU_A;
} }
dev_printk(KERN_INFO, &(priv->hw->wiphy->dev), IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
"Tunable channels: %d 802.11bg, %d 802.11a channels\n",
priv->bands[IEEE80211_BAND_2GHZ].n_channels, priv->bands[IEEE80211_BAND_2GHZ].n_channels,
priv->bands[IEEE80211_BAND_5GHZ].n_channels); priv->bands[IEEE80211_BAND_5GHZ].n_channels);
......
...@@ -31,6 +31,13 @@ ...@@ -31,6 +31,13 @@
struct iwl_priv; struct iwl_priv;
#define IWL_ERROR(f, a...) dev_err(&(priv->pci_dev->dev), f, ## a)
#define IWL_WARNING(f, a...) dev_warn(&(priv->pci_dev->dev), f, ## a)
#define IWL_ERR(p, f, a...) dev_err(&((p)->pci_dev->dev), f, ## a)
#define IWL_WARN(p, f, a...) dev_warn(&((p)->pci_dev->dev), f, ## a)
#define IWL_INFO(p, f, a...) dev_info(&((p)->pci_dev->dev), f, ## a)
#define IWL_CRIT(p, f, a...) dev_crit(&((p)->pci_dev->dev), f, ## a)
#ifdef CONFIG_IWLWIFI_DEBUG #ifdef CONFIG_IWLWIFI_DEBUG
#define IWL_DEBUG(level, fmt, args...) \ #define IWL_DEBUG(level, fmt, args...) \
do { \ do { \
...@@ -164,11 +171,6 @@ static inline void iwl_dbgfs_unregister(struct iwl_priv *priv) ...@@ -164,11 +171,6 @@ static inline void iwl_dbgfs_unregister(struct iwl_priv *priv)
#define IWL_DL_TX_REPLY (1 << 30) #define IWL_DL_TX_REPLY (1 << 30)
#define IWL_DL_QOS (1 << 31) #define IWL_DL_QOS (1 << 31)
#define IWL_ERROR(f, a...) \
dev_printk(KERN_ERR, &(priv->hw->wiphy->dev), f, ## a)
#define IWL_WARNING(f, a...) \
dev_printk(KERN_WARNING, &(priv->hw->wiphy->dev), f, ## a)
#define IWL_DEBUG_INFO(f, a...) IWL_DEBUG(IWL_DL_INFO, f, ## a) #define IWL_DEBUG_INFO(f, a...) IWL_DEBUG(IWL_DL_INFO, f, ## a)
#define IWL_DEBUG_MAC80211(f, a...) IWL_DEBUG(IWL_DL_MAC80211, f, ## a) #define IWL_DEBUG_MAC80211(f, a...) IWL_DEBUG(IWL_DL_MAC80211, f, ## a)
#define IWL_DEBUG_MACDUMP(f, a...) IWL_DEBUG(IWL_DL_MACDUMP, f, ## a) #define IWL_DEBUG_MACDUMP(f, a...) IWL_DEBUG(IWL_DL_MACDUMP, f, ## a)
......
...@@ -172,9 +172,6 @@ static ssize_t iwl_dbgfs_sram_read(struct file *file, ...@@ -172,9 +172,6 @@ static ssize_t iwl_dbgfs_sram_read(struct file *file,
struct iwl_priv *priv = (struct iwl_priv *)file->private_data; struct iwl_priv *priv = (struct iwl_priv *)file->private_data;
const size_t bufsz = sizeof(buf); const size_t bufsz = sizeof(buf);
printk(KERN_DEBUG "offset is: 0x%x\tlen is: 0x%x\n",
priv->dbgfs->sram_offset, priv->dbgfs->sram_len);
iwl_grab_nic_access(priv); iwl_grab_nic_access(priv);
for (i = priv->dbgfs->sram_len; i > 0; i -= 4) { for (i = priv->dbgfs->sram_len; i > 0; i -= 4) {
val = iwl_read_targ_mem(priv, priv->dbgfs->sram_offset + \ val = iwl_read_targ_mem(priv, priv->dbgfs->sram_offset + \
......
...@@ -262,8 +262,7 @@ void iwl_rx_allocate(struct iwl_priv *priv) ...@@ -262,8 +262,7 @@ void iwl_rx_allocate(struct iwl_priv *priv)
rxb->skb = alloc_skb(priv->hw_params.rx_buf_size + 256, rxb->skb = alloc_skb(priv->hw_params.rx_buf_size + 256,
GFP_KERNEL); GFP_KERNEL);
if (!rxb->skb) { if (!rxb->skb) {
dev_printk(KERN_CRIT, &(priv->hw->wiphy->dev), IWL_CRIT(priv, "Can not allocate SKB buffers\n");
"Can not allocate SKB buffers\n");
/* We don't reschedule replenish work here -- we will /* We don't reschedule replenish work here -- we will
* call the restock method and if it still needs * call the restock method and if it still needs
* more buffers it will schedule replenish */ * more buffers it will schedule replenish */
......
...@@ -802,7 +802,7 @@ static void iwl_tx_cmd_build_hwcrypto(struct iwl_priv *priv, ...@@ -802,7 +802,7 @@ static void iwl_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
break; break;
default: default:
printk(KERN_ERR "Unknown encode alg %d\n", keyconf->alg); IWL_ERR(priv, "Unknown encode alg %d\n", keyconf->alg);
break; break;
} }
} }
...@@ -1334,7 +1334,7 @@ int iwl_tx_agg_start(struct iwl_priv *priv, const u8 *ra, u16 tid, u16 *ssn) ...@@ -1334,7 +1334,7 @@ int iwl_tx_agg_start(struct iwl_priv *priv, const u8 *ra, u16 tid, u16 *ssn)
return ret; return ret;
if (tid_data->tfds_in_queue == 0) { if (tid_data->tfds_in_queue == 0) {
printk(KERN_ERR "HW queue is empty\n"); IWL_ERR(priv, "HW queue is empty\n");
tid_data->agg.state = IWL_AGG_ON; tid_data->agg.state = IWL_AGG_ON;
ieee80211_start_tx_ba_cb_irqsafe(priv->hw, ra, tid); ieee80211_start_tx_ba_cb_irqsafe(priv->hw, ra, tid);
} else { } else {
......
...@@ -2239,7 +2239,7 @@ static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv, ...@@ -2239,7 +2239,7 @@ static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
break; break;
default: default:
printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg); IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
break; break;
} }
} }
...@@ -3504,8 +3504,7 @@ static void iwl3945_rx_allocate(struct iwl_priv *priv) ...@@ -3504,8 +3504,7 @@ static void iwl3945_rx_allocate(struct iwl_priv *priv)
alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC); alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
if (!rxb->skb) { if (!rxb->skb) {
if (net_ratelimit()) if (net_ratelimit())
printk(KERN_CRIT DRV_NAME IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
": Can not allocate SKB buffers\n");
/* We don't reschedule replenish work here -- we will /* We don't reschedule replenish work here -- we will
* call the restock method and if it still needs * call the restock method and if it still needs
* more buffers it will schedule replenish */ * more buffers it will schedule replenish */
...@@ -4874,15 +4873,13 @@ static int iwl3945_init_geos(struct iwl_priv *priv) ...@@ -4874,15 +4873,13 @@ static int iwl3945_init_geos(struct iwl_priv *priv)
if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) && if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
priv->cfg->sku & IWL_SKU_A) { priv->cfg->sku & IWL_SKU_A) {
printk(KERN_INFO DRV_NAME IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
": Incorrectly detected BG card as ABG. Please send " "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
"your PCI ID 0x%04X:0x%04X to maintainer.\n",
priv->pci_dev->device, priv->pci_dev->subsystem_device); priv->pci_dev->device, priv->pci_dev->subsystem_device);
priv->cfg->sku &= ~IWL_SKU_A; priv->cfg->sku &= ~IWL_SKU_A;
} }
printk(KERN_INFO DRV_NAME IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
priv->bands[IEEE80211_BAND_2GHZ].n_channels, priv->bands[IEEE80211_BAND_2GHZ].n_channels,
priv->bands[IEEE80211_BAND_5GHZ].n_channels); priv->bands[IEEE80211_BAND_5GHZ].n_channels);
...@@ -5299,11 +5296,12 @@ static int iwl3945_read_ucode(struct iwl_priv *priv) ...@@ -5299,11 +5296,12 @@ static int iwl3945_read_ucode(struct iwl_priv *priv)
"from http://www.intellinuxwireless.org.\n", "from http://www.intellinuxwireless.org.\n",
api_max, api_ver); api_max, api_ver);
printk(KERN_INFO DRV_NAME " loaded firmware version %u.%u.%u.%u\n", IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
IWL_UCODE_MAJOR(priv->ucode_ver), IWL_UCODE_MAJOR(priv->ucode_ver),
IWL_UCODE_MINOR(priv->ucode_ver), IWL_UCODE_MINOR(priv->ucode_ver),
IWL_UCODE_API(priv->ucode_ver), IWL_UCODE_API(priv->ucode_ver),
IWL_UCODE_SERIAL(priv->ucode_ver)); IWL_UCODE_SERIAL(priv->ucode_ver));
IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n", IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
priv->ucode_ver); priv->ucode_ver);
IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size); IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
...@@ -7192,8 +7190,7 @@ static ssize_t store_debug_level(struct device *d, ...@@ -7192,8 +7190,7 @@ static ssize_t store_debug_level(struct device *d,
ret = strict_strtoul(buf, 0, &val); ret = strict_strtoul(buf, 0, &val);
if (ret) if (ret)
printk(KERN_INFO DRV_NAME IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
": %s is not in hex or decimal form.\n", buf);
else else
priv->debug_level = val; priv->debug_level = val;
...@@ -7235,8 +7232,7 @@ static ssize_t store_tx_power(struct device *d, ...@@ -7235,8 +7232,7 @@ static ssize_t store_tx_power(struct device *d,
val = simple_strtoul(p, &p, 10); val = simple_strtoul(p, &p, 10);
if (p == buf) if (p == buf)
printk(KERN_INFO DRV_NAME IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
": %s is not in decimal form.\n", buf);
else else
iwl3945_hw_reg_set_txpower(priv, val); iwl3945_hw_reg_set_txpower(priv, val);
...@@ -7792,7 +7788,7 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e ...@@ -7792,7 +7788,7 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
if (!err) if (!err)
err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
if (err) { if (err) {
printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n"); IWL_WARN(priv, "No suitable DMA available.\n");
goto out_pci_disable_device; goto out_pci_disable_device;
} }
...@@ -7900,8 +7896,8 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e ...@@ -7900,8 +7896,8 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
goto out_free_channel_map; goto out_free_channel_map;
} }
printk(KERN_INFO DRV_NAME IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name); priv->cfg->name);
/*********************************** /***********************************
* 7. Initialize Module Parameters * 7. Initialize Module Parameters
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册