Commit 1dd31b6c authored by Zhu Yi's avatar Zhu Yi Committed by Linus Torvalds

[PATCH] ipw2200: Suppress warning message

The following message will be only printed if DEBUG_NOTIF is on.  "Unknown
notification: subtype=40,flags=0xa0,size=40"
Signed-off-by: default avatarZhu Yi <yi.zhu@intel.com>
Cc: James Ketrenos <jketreno@linux.intel.com>
Cc: Jeff Garzik <jgarzik@pobox.com>
Cc: "John W. Linville" <linville@tuxdriver.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 7fd105e7
...@@ -4616,9 +4616,9 @@ static void ipw_rx_notification(struct ipw_priv *priv, ...@@ -4616,9 +4616,9 @@ static void ipw_rx_notification(struct ipw_priv *priv,
} }
default: default:
IPW_ERROR("Unknown notification: " IPW_DEBUG_NOTIF("Unknown notification: "
"subtype=%d,flags=0x%2x,size=%d\n", "subtype=%d,flags=0x%2x,size=%d\n",
notif->subtype, notif->flags, notif->size); notif->subtype, notif->flags, notif->size);
} }
} }
......
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