mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 12:24:37 -04:00
staging: comedi: pcl818: remove board attach noise
These messages are just added noise. Remove them. 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:
committed by
Greg Kroah-Hartman
parent
de4ea8e3c1
commit
eeb6f2d3b7
@@ -1234,16 +1234,10 @@ static int pcl818_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||
irq = it->options[1];
|
||||
if (irq) { /* we want to use IRQ */
|
||||
if (((1 << irq) & board->IRQbits) == 0) {
|
||||
printk
|
||||
(", IRQ %u is out of allowed range, DISABLING IT",
|
||||
irq);
|
||||
irq = 0; /* Bad IRQ */
|
||||
} else {
|
||||
if (request_irq(irq, interrupt_pcl818, 0,
|
||||
dev->board_name, dev)) {
|
||||
printk
|
||||
(", unable to allocate IRQ %u, DISABLING IT",
|
||||
irq);
|
||||
irq = 0; /* Can't use IRQ */
|
||||
}
|
||||
}
|
||||
@@ -1308,11 +1302,9 @@ static int pcl818_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||
if (check_single_ended(dev->iobase)) {
|
||||
s->n_chan = board->n_aichan_se;
|
||||
s->subdev_flags |= SDF_COMMON | SDF_GROUND;
|
||||
printk(", %dchans S.E. DAC", s->n_chan);
|
||||
} else {
|
||||
s->n_chan = board->n_aichan_diff;
|
||||
s->subdev_flags |= SDF_DIFF;
|
||||
printk(", %dchans DIFF DAC", s->n_chan);
|
||||
}
|
||||
s->maxdata = board->ai_maxdata;
|
||||
s->len_chanlist = s->n_chan;
|
||||
@@ -1431,8 +1423,6 @@ static int pcl818_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||
|
||||
pcl818_reset(dev);
|
||||
|
||||
printk("\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user