Commit 94941bc8 authored by Benjamin Adolphi's avatar Benjamin Adolphi Committed by Greg Kroah-Hartman

Staging: comedi: poc: Checkpatch cleanups

This fixes all checkpatch issues in the poc comedi driver.
Signed-off-by: default avatarBenjamin Adolphi <b.adolphi@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b1e68ea5
...@@ -122,22 +122,21 @@ static int poc_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -122,22 +122,21 @@ static int poc_attach(struct comedi_device *dev, struct comedi_devconfig *it)
unsigned int iosize; unsigned int iosize;
iobase = it->options[0]; iobase = it->options[0];
printk("comedi%d: poc: using %s iobase 0x%lx\n", dev->minor, printk(KERN_INFO "comedi%d: poc: using %s iobase 0x%lx\n", dev->minor,
this_board->name, iobase); this_board->name, iobase);
dev->board_name = this_board->name; dev->board_name = this_board->name;
if (iobase == 0) { if (iobase == 0) {
printk("io base address required\n"); printk(KERN_WARNING "io base address required\n");
return -EINVAL; return -EINVAL;
} }
iosize = this_board->iosize; iosize = this_board->iosize;
/* check if io addresses are available */ /* check if io addresses are available */
if (!request_region(iobase, iosize, "dac02")) { if (!request_region(iobase, iosize, "dac02")) {
printk printk(KERN_WARNING "I/O port conflict: failed to allocate "
("I/O port conflict: failed to allocate ports 0x%lx to 0x%lx\n", "ports 0x%lx to 0x%lx\n", iobase, iobase + iosize - 1);
iobase, iobase + iosize - 1);
return -EIO; return -EIO;
} }
dev->iobase = iobase; dev->iobase = iobase;
...@@ -156,9 +155,8 @@ static int poc_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -156,9 +155,8 @@ static int poc_attach(struct comedi_device *dev, struct comedi_devconfig *it)
s->insn_write = this_board->winsn; s->insn_write = this_board->winsn;
s->insn_read = this_board->rinsn; s->insn_read = this_board->rinsn;
s->insn_bits = this_board->insnbits; s->insn_bits = this_board->insnbits;
if (s->type == COMEDI_SUBD_AO || s->type == COMEDI_SUBD_DO) { if (s->type == COMEDI_SUBD_AO || s->type == COMEDI_SUBD_DO)
s->subdev_flags = SDF_WRITABLE; s->subdev_flags = SDF_WRITABLE;
}
return 0; return 0;
} }
...@@ -169,7 +167,7 @@ static int poc_detach(struct comedi_device *dev) ...@@ -169,7 +167,7 @@ static int poc_detach(struct comedi_device *dev)
if (dev->iobase) if (dev->iobase)
release_region(dev->iobase, this_board->iosize); release_region(dev->iobase, this_board->iosize);
printk("comedi%d: dac02: remove\n", dev->minor); printk(KERN_INFO "comedi%d: dac02: remove\n", dev->minor);
return 0; return 0;
} }
......
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