Commit 1d1b09eb authored by Zhu Yi's avatar Zhu Yi Committed by John W. Linville

[PATCH] ipw2200: Change debug level for firmware error logging

Signed-off-by: default avatarZhu Yi <yi.zhu@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e815de42
...@@ -1796,9 +1796,9 @@ static void ipw_irq_tasklet(struct ipw_priv *priv) ...@@ -1796,9 +1796,9 @@ static void ipw_irq_tasklet(struct ipw_priv *priv)
} }
if (inta & IPW_INTA_BIT_FATAL_ERROR) { if (inta & IPW_INTA_BIT_FATAL_ERROR) {
IPW_ERROR("Firmware error detected. Restarting.\n"); IPW_WARNING("Firmware error detected. Restarting.\n");
if (priv->error) { if (priv->error) {
IPW_ERROR("Sysfs 'error' log already exists.\n"); IPW_DEBUG_FW("Sysfs 'error' log already exists.\n");
#ifdef CONFIG_IPW2200_DEBUG #ifdef CONFIG_IPW2200_DEBUG
if (ipw_debug_level & IPW_DL_FW_ERRORS) { if (ipw_debug_level & IPW_DL_FW_ERRORS) {
struct ipw_fw_error *error = struct ipw_fw_error *error =
...@@ -1811,9 +1811,9 @@ static void ipw_irq_tasklet(struct ipw_priv *priv) ...@@ -1811,9 +1811,9 @@ static void ipw_irq_tasklet(struct ipw_priv *priv)
} else { } else {
priv->error = ipw_alloc_error_log(priv); priv->error = ipw_alloc_error_log(priv);
if (priv->error) if (priv->error)
IPW_ERROR("Sysfs 'error' log captured.\n"); IPW_DEBUG_FW("Sysfs 'error' log captured.\n");
else else
IPW_ERROR("Error allocating sysfs 'error' " IPW_DEBUG_FW("Error allocating sysfs 'error' "
"log.\n"); "log.\n");
#ifdef CONFIG_IPW2200_DEBUG #ifdef CONFIG_IPW2200_DEBUG
if (ipw_debug_level & IPW_DL_FW_ERRORS) if (ipw_debug_level & IPW_DL_FW_ERRORS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment