Browse Source

staging: comedi: adl_pci9111: remove AI_INSN_DEBUG code

This debug output should be removed in the final driver.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
H Hartley Sweeten 13 years ago
parent
commit
2873ea8154
1 changed files with 0 additions and 14 deletions
  1. 0 14
      drivers/staging/comedi/drivers/adl_pci9111.c

+ 0 - 14
drivers/staging/comedi/drivers/adl_pci9111.c

@@ -979,8 +979,6 @@ static irqreturn_t pci9111_interrupt(int irq, void *p_device)
 
 /*  analog instant input */
 
-#undef AI_INSN_DEBUG
-
 static int pci9111_ai_insn_read(struct comedi_device *dev,
 				struct comedi_subdevice *s,
 				struct comedi_insn *insn, unsigned int *data)
@@ -990,12 +988,6 @@ static int pci9111_ai_insn_read(struct comedi_device *dev,
 
 	int timeout, i;
 
-#ifdef AI_INSN_DEBUG
-	printk(PCI9111_DRIVER_NAME ": ai_insn set c/r/n = %2x/%2x/%2x\n",
-	       CR_CHAN((&insn->chanspec)[0]),
-	       CR_RANGE((&insn->chanspec)[0]), insn->n);
-#endif
-
 	pci9111_ai_channel_set(CR_CHAN((&insn->chanspec)[0]));
 
 	if ((pci9111_ai_range_get()) != CR_RANGE((&insn->chanspec)[0]))
@@ -1026,12 +1018,6 @@ conversion_done:
 			data[i] = pci9111_ai_get_data();
 	}
 
-#ifdef AI_INSN_DEBUG
-	printk(PCI9111_DRIVER_NAME ": ai_insn get c/r/t = %2x/%2x/%2x\n",
-	       pci9111_ai_channel_get(),
-	       pci9111_ai_range_get(), pci9111_trigger_and_autoscan_get());
-#endif
-
 	return i;
 }