]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
cw1200: When debug is enabled, display all wakeup conditions for the wait_event_inter...
authorSolomon Peachy <pizza@shaftnet.org>
Wed, 28 Aug 2013 00:17:13 +0000 (20:17 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 28 Aug 2013 17:58:29 +0000 (13:58 -0400)
When trying to debug an interrupt delivery problem I noticed that not
all of the wakeup conditions on the worker thread were included in the
debug message.  This patch rectifies that.

Signed-off-by: Solomon Peachy <pizza@shaftnet.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/cw1200/bh.c

index c1ec2a4dd8c02c6800a515ea152f6c91b1dbe35f..92d299aa257ce48b3154cac724a39da435e5a69a 100644 (file)
@@ -465,8 +465,8 @@ static int cw1200_bh(void *arg)
                                (rx || tx || term || suspend || priv->bh_error);
                        }), status);
 
-               pr_debug("[BH] - rx: %d, tx: %d, term: %d, suspend: %d, status: %ld\n",
-                        rx, tx, term, suspend, status);
+               pr_debug("[BH] - rx: %d, tx: %d, term: %d, bh_err: %d, suspend: %d, status: %ld\n",
+                        rx, tx, term, suspend, priv->bh_error, status);
 
                /* Did an error occur? */
                if ((status < 0 && status != -ERESTARTSYS) ||