Commit 53f63dc7 authored by YAMANE Toshiaki's avatar YAMANE Toshiaki Committed by Greg Kroah-Hartman

staging/comedi: Use dev_ printks in drivers/quatech_daqp_cs.c

fixed below checkpatch warnings.
- WARNING: printk() should include KERN_ facility level
Signed-off-by: default avatarYAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 543a09e9
...@@ -300,7 +300,7 @@ static enum irqreturn daqp_interrupt(int irq, void *dev_id) ...@@ -300,7 +300,7 @@ static enum irqreturn daqp_interrupt(int irq, void *dev_id)
if (status & DAQP_STATUS_DATA_LOST) { if (status & DAQP_STATUS_DATA_LOST) {
s->async->events |= s->async->events |=
COMEDI_CB_EOA | COMEDI_CB_OVERFLOW; COMEDI_CB_EOA | COMEDI_CB_OVERFLOW;
printk("daqp: data lost\n"); dev_warn(dev->class_dev, "data lost\n");
daqp_ai_cancel(dev, s); daqp_ai_cancel(dev, s);
break; break;
} }
...@@ -398,7 +398,8 @@ static int daqp_ai_insn_read(struct comedi_device *dev, ...@@ -398,7 +398,8 @@ static int daqp_ai_insn_read(struct comedi_device *dev,
&& (inb(dev->iobase + DAQP_STATUS) & DAQP_STATUS_EVENTS)) && (inb(dev->iobase + DAQP_STATUS) & DAQP_STATUS_EVENTS))
; ;
if (!counter) { if (!counter) {
printk("daqp: couldn't clear interrupts in status register\n"); dev_err(dev->class_dev,
"couldn't clear interrupts in status register\n");
return -1; return -1;
} }
...@@ -824,8 +825,8 @@ static int daqp_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -824,8 +825,8 @@ static int daqp_attach(struct comedi_device *dev, struct comedi_devconfig *it)
struct comedi_subdevice *s; struct comedi_subdevice *s;
if (it->options[0] < 0 || it->options[0] >= MAX_DEV || !local) { if (it->options[0] < 0 || it->options[0] >= MAX_DEV || !local) {
printk("comedi%d: No such daqp device %d\n", dev_err(dev->class_dev, "No such daqp device %d\n",
dev->minor, it->options[0]); it->options[0]);
return -EIO; return -EIO;
} }
......
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