Commit 65e2618f authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: dmm32at: remove unnecessary printk noise

A timeout will return -ETIMEDOUT. The printks are just added noise.
Remove them.
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 72998850
...@@ -199,10 +199,8 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev, ...@@ -199,10 +199,8 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev,
if ((status & DMM32AT_STATUS) == 0) if ((status & DMM32AT_STATUS) == 0)
break; break;
} }
if (i == 40000) { if (i == 40000)
printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
}
/* convert n samples */ /* convert n samples */
for (n = 0; n < insn->n; n++) { for (n = 0; n < insn->n; n++) {
...@@ -214,10 +212,8 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev, ...@@ -214,10 +212,8 @@ static int dmm32at_ai_rinsn(struct comedi_device *dev,
if ((status & DMM32AT_STATUS) == 0) if ((status & DMM32AT_STATUS) == 0)
break; break;
} }
if (i == 40000) { if (i == 40000)
printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
}
/* read data */ /* read data */
lsb = inb(dev->iobase + DMM32AT_AILSB); lsb = inb(dev->iobase + DMM32AT_AILSB);
...@@ -453,10 +449,8 @@ static int dmm32at_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s) ...@@ -453,10 +449,8 @@ static int dmm32at_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
if ((status & DMM32AT_STATUS) == 0) if ((status & DMM32AT_STATUS) == 0)
break; break;
} }
if (i == 40000) { if (i == 40000)
printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
}
if (devpriv->ai_scans_left > 1) { if (devpriv->ai_scans_left > 1) {
/* start the clock and enable the interrupts */ /* start the clock and enable the interrupts */
...@@ -567,10 +561,9 @@ static int dmm32at_ao_winsn(struct comedi_device *dev, ...@@ -567,10 +561,9 @@ static int dmm32at_ao_winsn(struct comedi_device *dev,
if ((status & DMM32AT_DACBUSY) == 0) if ((status & DMM32AT_DACBUSY) == 0)
break; break;
} }
if (i == 40000) { if (i == 40000)
printk(KERN_WARNING "dmm32at: timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
}
/* dummy read to update trigger the output */ /* dummy read to update trigger the output */
status = inb(dev->iobase + DMM32AT_DACMSB); status = inb(dev->iobase + DMM32AT_DACMSB);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment