mirror of https://gitee.com/openkylin/linux.git
staging: comedi: das16: remove DEBUG_PRINT macro
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>
This commit is contained in:
parent
9960ad37cf
commit
66eca85755
|
@ -86,16 +86,6 @@ www.measurementcomputing.com
|
||||||
#include "8255.h"
|
#include "8255.h"
|
||||||
#include "comedi_fc.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_SIZE 20 /* number of ioports */
|
||||||
#define DAS16_DMA_SIZE 0xff00 /* size in bytes of allocated dma buffer */
|
#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 =
|
cmd->convert_arg =
|
||||||
das16_set_pacer(dev, cmd->convert_arg,
|
das16_set_pacer(dev, cmd->convert_arg,
|
||||||
cmd->flags & TRIG_ROUND_MASK);
|
cmd->flags & TRIG_ROUND_MASK);
|
||||||
DEBUG_PRINT("pacer period: %d ns\n", cmd->convert_arg);
|
|
||||||
|
|
||||||
/* enable counters */
|
/* enable counters */
|
||||||
byte = 0;
|
byte = 0;
|
||||||
|
@ -814,7 +803,6 @@ static void das16_interrupt(struct comedi_device *dev)
|
||||||
spin_lock_irqsave(&dev->spinlock, spin_flags);
|
spin_lock_irqsave(&dev->spinlock, spin_flags);
|
||||||
if ((devpriv->control_state & DMA_ENABLE) == 0) {
|
if ((devpriv->control_state & DMA_ENABLE) == 0) {
|
||||||
spin_unlock_irqrestore(&dev->spinlock, spin_flags);
|
spin_unlock_irqrestore(&dev->spinlock, spin_flags);
|
||||||
DEBUG_PRINT("interrupt while dma disabled?\n");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue