Skip to content

Commit

Permalink
staging: comedi: adl_pci9111: remove AI_INSN_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 2084fd1 commit 2873ea8
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions drivers/staging/comedi/drivers/adl_pci9111.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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]))
Expand Down Expand Up @@ -1026,12 +1018,6 @@ static int pci9111_ai_insn_read(struct comedi_device *dev,
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;
}

Expand Down

0 comments on commit 2873ea8

Please sign in to comment.