diff options
author | Zhu Yi <yi.zhu@intel.com> | 2006-03-01 17:40:59 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-03-17 15:08:03 -0500 |
commit | 1d1b09eb144e414ade1f44e21852fc60f2cf965b (patch) | |
tree | bce6f18ed69a27bbcc9d77e96a619ebe66a761c8 /drivers/net | |
parent | e815de422c1dc2fe787c6f3edba81f3cf0176e32 (diff) |
[PATCH] ipw2200: Change debug level for firmware error logging
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ipw2200.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c index d2fc8400d3ab..d12ef04fb4be 100644 --- a/drivers/net/wireless/ipw2200.c +++ b/drivers/net/wireless/ipw2200.c | |||
@@ -1796,9 +1796,9 @@ static void ipw_irq_tasklet(struct ipw_priv *priv) | |||
1796 | } | 1796 | } |
1797 | 1797 | ||
1798 | if (inta & IPW_INTA_BIT_FATAL_ERROR) { | 1798 | if (inta & IPW_INTA_BIT_FATAL_ERROR) { |
1799 | IPW_ERROR("Firmware error detected. Restarting.\n"); | 1799 | IPW_WARNING("Firmware error detected. Restarting.\n"); |
1800 | if (priv->error) { | 1800 | if (priv->error) { |
1801 | IPW_ERROR("Sysfs 'error' log already exists.\n"); | 1801 | IPW_DEBUG_FW("Sysfs 'error' log already exists.\n"); |
1802 | #ifdef CONFIG_IPW2200_DEBUG | 1802 | #ifdef CONFIG_IPW2200_DEBUG |
1803 | if (ipw_debug_level & IPW_DL_FW_ERRORS) { | 1803 | if (ipw_debug_level & IPW_DL_FW_ERRORS) { |
1804 | struct ipw_fw_error *error = | 1804 | struct ipw_fw_error *error = |
@@ -1811,10 +1811,10 @@ static void ipw_irq_tasklet(struct ipw_priv *priv) | |||
1811 | } else { | 1811 | } else { |
1812 | priv->error = ipw_alloc_error_log(priv); | 1812 | priv->error = ipw_alloc_error_log(priv); |
1813 | if (priv->error) | 1813 | if (priv->error) |
1814 | IPW_ERROR("Sysfs 'error' log captured.\n"); | 1814 | IPW_DEBUG_FW("Sysfs 'error' log captured.\n"); |
1815 | else | 1815 | else |
1816 | IPW_ERROR("Error allocating sysfs 'error' " | 1816 | IPW_DEBUG_FW("Error allocating sysfs 'error' " |
1817 | "log.\n"); | 1817 | "log.\n"); |
1818 | #ifdef CONFIG_IPW2200_DEBUG | 1818 | #ifdef CONFIG_IPW2200_DEBUG |
1819 | if (ipw_debug_level & IPW_DL_FW_ERRORS) | 1819 | if (ipw_debug_level & IPW_DL_FW_ERRORS) |
1820 | ipw_dump_error_log(priv, priv->error); | 1820 | ipw_dump_error_log(priv, priv->error); |