staging: comedi: adl_pci9111: remove AI_INSN_DEBUG code
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 11 Sep 2012 01:54:26 +0000 (18:54 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Sep 2012 03:02:24 +0000 (20:02 -0700)
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>
drivers/staging/comedi/drivers/adl_pci9111.c

index 10f1b87..1f32a26 100644 (file)
@@ -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;
 }