[media] lirc_sasem: key debug spew off debug modparam
authorJarod Wilson <jarod@redhat.com>
Thu, 24 Mar 2011 19:43:45 +0000 (16:43 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 20 May 2011 12:27:39 +0000 (09:27 -0300)
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/staging/lirc/lirc_sasem.c

index 63a438d..7080cde 100644 (file)
@@ -570,6 +570,7 @@ static void incoming_packet(struct sasem_context *context,
        unsigned char *buf = urb->transfer_buffer;
        long ms;
        struct timeval tv;
+       int i;
 
        if (len != 8) {
                printk(KERN_WARNING "%s: invalid incoming packet size (%d)\n",
@@ -577,12 +578,12 @@ static void incoming_packet(struct sasem_context *context,
                return;
        }
 
-#ifdef DEBUG
-       int i;
-       for (i = 0; i < 8; ++i)
-               printk(KERN_INFO "%02x ", buf[i]);
-       printk(KERN_INFO "\n");
-#endif
+       if (debug) {
+               printk(KERN_INFO "Incoming data: ");
+               for (i = 0; i < 8; ++i)
+                       printk(KERN_CONT "%02x ", buf[i]);
+               printk(KERN_CONT "\n");
+       }
 
        /*
         * Lirc could deal with the repeat code, but we really need to block it