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

Staging: comedi: pcl725: Checkpatch cleanups

This fixes all checkpatch issues in the pcl725 comedi driver.
Signed-off-by: default avatarBenjamin Adolphi <b.adolphi@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 18653919
...@@ -66,7 +66,7 @@ static int pcl725_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -66,7 +66,7 @@ static int pcl725_attach(struct comedi_device *dev, struct comedi_devconfig *it)
unsigned long iobase; unsigned long iobase;
iobase = it->options[0]; iobase = it->options[0];
printk("comedi%d: pcl725: 0x%04lx ", dev->minor, iobase); printk(KERN_INFO "comedi%d: pcl725: 0x%04lx ", dev->minor, iobase);
if (!request_region(iobase, PCL725_SIZE, "pcl725")) { if (!request_region(iobase, PCL725_SIZE, "pcl725")) {
printk("I/O port conflict\n"); printk("I/O port conflict\n");
return -EIO; return -EIO;
...@@ -96,14 +96,14 @@ static int pcl725_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -96,14 +96,14 @@ static int pcl725_attach(struct comedi_device *dev, struct comedi_devconfig *it)
s->insn_bits = pcl725_di_insn; s->insn_bits = pcl725_di_insn;
s->range_table = &range_digital; s->range_table = &range_digital;
printk("\n"); printk(KERN_INFO "\n");
return 0; return 0;
} }
static int pcl725_detach(struct comedi_device *dev) static int pcl725_detach(struct comedi_device *dev)
{ {
printk("comedi%d: pcl725: remove\n", dev->minor); printk(KERN_INFO "comedi%d: pcl725: remove\n", dev->minor);
if (dev->iobase) if (dev->iobase)
release_region(dev->iobase, PCL725_SIZE); release_region(dev->iobase, PCL725_SIZE);
......
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