staging: comedi: ni_atmio: convert printk to dev_err in ni_getboardtype()

Convert these printk() messages to dev_err().

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
H Hartley Sweeten 2014-07-18 13:29:55 -07:00 committed by Greg Kroah-Hartman
parent 221fa08c53
commit b252ebfccf

View File

@ -288,11 +288,13 @@ static int ni_getboardtype(struct comedi_device *dev)
} }
if (device_id == 255) if (device_id == 255)
printk(" can't find board\n"); dev_err(dev->class_dev, "can't find board\n");
else if (device_id == 0) else if (device_id == 0)
printk(" EEPROM read error (?) or device not found\n"); dev_err(dev->class_dev,
"EEPROM read error (?) or device not found\n");
else else
printk(" unknown device ID %d -- contact author\n", device_id); dev_err(dev->class_dev,
"unknown device ID %d -- contact author\n", device_id);
return -1; return -1;
} }