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

staging: comedi: ni_atmio: remove board attach noise



Remove the printk messages in the (*attach) of this driver. These are
just added noise.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 07e6b2e2
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
@@ -338,25 +338,18 @@ static int ni_atmio_attach(struct comedi_device *dev,

	dev->board_ptr = ni_boards + board;
	boardtype = comedi_board(dev);

	printk(" %s", boardtype->name);
	dev->board_name = boardtype->name;

	/* irq stuff */

	if (irq != 0) {
		if (irq > 15 || ni_irqpin[irq] == -1) {
			printk(" invalid irq %u\n", irq);
		if (irq > 15 || ni_irqpin[irq] == -1)
			return -EINVAL;
		}
		printk(" ( irq = %u )", irq);
		ret = request_irq(irq, ni_E_interrupt, 0,
				  "ni_atmio", dev);

		if (ret < 0) {
			printk(" irq not available\n");
		if (ret < 0)
			return -EINVAL;
		}
		dev->irq = irq;
	}