Skip to content

Commit

Permalink
staging: comedi: contec_pci_dio: remove function trace messages
Browse files Browse the repository at this point in the history
The dev_dbg function trace messages in the contec_do_insn_bits
and contec_di_insn_bits functions are just noise. Remove them.

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 Aug 16, 2012
1 parent 5432e3f commit f7f57ef
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions drivers/staging/comedi/drivers/contec_pci_dio.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,10 @@ static int contec_do_insn_bits(struct comedi_device *dev,
{
const struct contec_board *thisboard = comedi_board(dev);

dev_dbg(dev->class_dev, "contec_do_insn_bits called\n");
dev_dbg(dev->class_dev, "data: %d %d\n", data[0], data[1]);

if (data[0]) {
s->state &= ~data[0];
s->state |= data[0] & data[1];
dev_dbg(dev->class_dev, "out: %d on %lx\n", s->state,
dev->iobase + thisboard->out_offs);

outw(s->state, dev->iobase + thisboard->out_offs);
}
return insn->n;
Expand All @@ -80,9 +76,6 @@ static int contec_di_insn_bits(struct comedi_device *dev,
{
const struct contec_board *thisboard = comedi_board(dev);

dev_dbg(dev->class_dev, "contec_di_insn_bits called\n");
dev_dbg(dev->class_dev, "data: %d %d\n", data[0], data[1]);

data[1] = inw(dev->iobase + thisboard->in_offs);

return insn->n;
Expand Down

0 comments on commit f7f57ef

Please sign in to comment.