OSDN Git Service

staging: comedi: das16: remove DEBUG_PRINT macro
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 29 Jul 2013 20:56:38 +0000 (13:56 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Aug 2013 00:37:48 +0000 (17:37 -0700)
This macro outputs some printk() debug info that is just added noise.
Remove it as well as the DEBUG stuff.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/das16.c

index ae3a3ea..d86ed2c 100644 (file)
@@ -86,16 +86,6 @@ www.measurementcomputing.com
 #include "8255.h"
 #include "comedi_fc.h"
 
-#undef DEBUG
-/* #define DEBUG */
-
-#ifdef DEBUG
-#define DEBUG_PRINT(format, args...)   \
-       printk(KERN_DEBUG "das16: " format, ## args)
-#else
-#define DEBUG_PRINT(format, args...)
-#endif
-
 #define DAS16_SIZE 20          /*  number of ioports */
 #define DAS16_DMA_SIZE 0xff00  /*  size in bytes of allocated dma buffer */
 
@@ -566,7 +556,6 @@ static int das16_cmd_exec(struct comedi_device *dev, struct comedi_subdevice *s)
        cmd->convert_arg =
            das16_set_pacer(dev, cmd->convert_arg,
                            cmd->flags & TRIG_ROUND_MASK);
-       DEBUG_PRINT("pacer period: %d ns\n", cmd->convert_arg);
 
        /* enable counters */
        byte = 0;
@@ -814,7 +803,6 @@ static void das16_interrupt(struct comedi_device *dev)
        spin_lock_irqsave(&dev->spinlock, spin_flags);
        if ((devpriv->control_state & DMA_ENABLE) == 0) {
                spin_unlock_irqrestore(&dev->spinlock, spin_flags);
-               DEBUG_PRINT("interrupt while dma disabled?\n");
                return;
        }