Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3157731 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

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



This is just added noise. Remove it.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e99f0f07
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -672,16 +672,6 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
		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;
}