Commit 4a4ed3f9 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

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: 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 c1ce7f10
...@@ -177,11 +177,9 @@ static int mpc624_ai_rinsn(struct comedi_device *dev, ...@@ -177,11 +177,9 @@ static int mpc624_ai_rinsn(struct comedi_device *dev,
else else
break; break;
} }
if (i == TIMEOUT) { if (i == TIMEOUT)
printk(KERN_ERR "MPC624: timeout (%dms)\n", TIMEOUT);
data[n] = 0;
return -ETIMEDOUT; return -ETIMEDOUT;
}
/* Start reading data */ /* Start reading data */
data_in = 0; data_in = 0;
data_out = devpriv->ulConvertionRate; data_out = devpriv->ulConvertionRate;
......
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