Skip to content

Commit

Permalink
staging: comedi: adl_pci9111: remove AI_DO_CMD_DEBUG code
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Sep 11, 2012
1 parent 3e5a0ba commit 1fbc937
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions drivers/staging/comedi/drivers/adl_pci9111.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,6 @@ static void pci9111_interrupt_source_set(struct comedi_device *dev,

/* Cancel analog input autoscan */

#undef AI_DO_CMD_DEBUG

static int pci9111_ai_cancel(struct comedi_device *dev,
struct comedi_subdevice *s)
{
Expand All @@ -393,10 +391,6 @@ static int pci9111_ai_cancel(struct comedi_device *dev,

pci9111_fifo_reset();

#ifdef AI_DO_CMD_DEBUG
printk(PCI9111_DRIVER_NAME ": ai_cancel\n");
#endif

return 0;
}

Expand Down Expand Up @@ -650,11 +644,6 @@ static int pci9111_ai_do_cmd(struct comedi_device *dev,
&(async_cmd->convert_arg),
async_cmd->
flags & TRIG_ROUND_MASK);
#ifdef AI_DO_CMD_DEBUG
printk(PCI9111_DRIVER_NAME ": divisors = %d, %d\n",
dev_private->timer_divisor_1,
dev_private->timer_divisor_2);
#endif

pci9111_trigger_source_set(dev, software);
pci9111_timer_set(dev);
Expand Down Expand Up @@ -696,23 +685,6 @@ static int pci9111_ai_do_cmd(struct comedi_device *dev,
dev_private->chunk_num_samples =
dev_private->chanlist_len * (1 + dev_private->scan_delay);

#ifdef AI_DO_CMD_DEBUG
printk(PCI9111_DRIVER_NAME ": start interruptions!\n");
printk(PCI9111_DRIVER_NAME ": trigger source = %2x\n",
pci9111_trigger_and_autoscan_get());
printk(PCI9111_DRIVER_NAME ": irq source = %2x\n",
pci9111_interrupt_and_fifo_get());
printk(PCI9111_DRIVER_NAME ": ai_do_cmd\n");
printk(PCI9111_DRIVER_NAME ": stop counter = %d\n",
dev_private->stop_counter);
printk(PCI9111_DRIVER_NAME ": scan delay = %d\n",
dev_private->scan_delay);
printk(PCI9111_DRIVER_NAME ": chanlist_len = %d\n",
dev_private->chanlist_len);
printk(PCI9111_DRIVER_NAME ": chunk num samples = %d\n",
dev_private->chunk_num_samples);
#endif

return 0;
}

Expand Down

0 comments on commit 1fbc937

Please sign in to comment.