mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 15:51:40 -04:00
staging: comedi: mpc624: remove unnecessary printk noise
The ai read timeout will return -ETIMEDOUT. The printk is just added noise. Remove it. It's also not necessary to set data[n[ = 0 when the read timesout. Remove that also. 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
c1ce7f1054
commit
4a4ed3f96b
@@ -177,11 +177,9 @@ static int mpc624_ai_rinsn(struct comedi_device *dev,
|
||||
else
|
||||
break;
|
||||
}
|
||||
if (i == TIMEOUT) {
|
||||
printk(KERN_ERR "MPC624: timeout (%dms)\n", TIMEOUT);
|
||||
data[n] = 0;
|
||||
if (i == TIMEOUT)
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
/* Start reading data */
|
||||
data_in = 0;
|
||||
data_out = devpriv->ulConvertionRate;
|
||||
|
||||
Reference in New Issue
Block a user