mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 14:42:18 -04:00
staging: comedi: mpc624: convert printk messages in mpc624_ai_rinsn()
There's no reason for these messages to be KERN_INFO. Convert them to dev_dbg(). 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
4a4ed3f96b
commit
ba74f010ac
@@ -238,11 +238,11 @@ static int mpc624_ai_rinsn(struct comedi_device *dev,
|
||||
*/
|
||||
|
||||
if (data_in & MPC624_EOC_BIT)
|
||||
printk(KERN_INFO "MPC624:EOC bit is set (data_in=%lu)!",
|
||||
data_in);
|
||||
dev_dbg(dev->class_dev,
|
||||
"EOC bit is set (data_in=%lu)!", data_in);
|
||||
if (data_in & MPC624_DMY_BIT)
|
||||
printk(KERN_INFO "MPC624:DMY bit is set (data_in=%lu)!",
|
||||
data_in);
|
||||
dev_dbg(dev->class_dev,
|
||||
"DMY bit is set (data_in=%lu)!", data_in);
|
||||
if (data_in & MPC624_SGN_BIT) { /* Volatge is positive */
|
||||
/*
|
||||
* comedi operates on unsigned numbers, so mask off EOC
|
||||
|
||||
Reference in New Issue
Block a user