Staging: comedi: kcomedilib: fix coding style issues in kcomedilib_main.c
This is a patch to the kcomedilib_main.c file that fixes up some printk() warning issues. Signed-off-by: Gustavo Silva <silvagustavo@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1309e617bc
commit
2312202c4a
|
@ -93,7 +93,7 @@ static int comedi_do_insn(struct comedi_device *dev, struct comedi_insn *insn)
|
||||||
s = dev->subdevices + insn->subdev;
|
s = dev->subdevices + insn->subdev;
|
||||||
|
|
||||||
if (s->type == COMEDI_SUBD_UNUSED) {
|
if (s->type == COMEDI_SUBD_UNUSED) {
|
||||||
printk("%d not useable subdevice\n", insn->subdev);
|
printk(KERN_ERR "%d not useable subdevice\n", insn->subdev);
|
||||||
ret = -EIO;
|
ret = -EIO;
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
@ -102,7 +102,7 @@ static int comedi_do_insn(struct comedi_device *dev, struct comedi_insn *insn)
|
||||||
|
|
||||||
ret = comedi_check_chanlist(s, 1, &insn->chanspec);
|
ret = comedi_check_chanlist(s, 1, &insn->chanspec);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
printk("bad chanspec\n");
|
printk(KERN_ERR "bad chanspec\n");
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue