staging: comedi: pcmuio: remove dev_dbg() noise during attach

This is just added noise. Remove it.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
H Hartley Sweeten 2013-06-18 13:26:42 -07:00 committed by Greg Kroah-Hartman
parent e99f0f073d
commit b315773177
1 changed files with 0 additions and 10 deletions

View File

@ -672,16 +672,6 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
devpriv->asics[asic].irq = irq[asic]; devpriv->asics[asic].irq = irq[asic];
} }
if (irq[0]) {
dev_dbg(dev->class_dev, "irq: %u\n", irq[0]);
if (irq[1] && board->num_asics == 2)
dev_dbg(dev->class_dev, "second ASIC irq: %u\n",
irq[1]);
} else {
dev_dbg(dev->class_dev, "(IRQ mode disabled)\n");
}
return 1; return 1;
} }