Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 186667
b: refs/heads/master
c: acb60e9
h: refs/heads/master
i:
  186665: 7dfc7f0
  186663: e126401
v: v3
  • Loading branch information
Benjamin Adolphi authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent 1be9b11 commit 28e1bcf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 186539192c37c0ebe95ddac341cf7e037b096966
refs/heads/master: acb60e915a68c44757e12c45a8cede11339b6172
6 changes: 3 additions & 3 deletions trunk/drivers/staging/comedi/drivers/pcl725.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static int pcl725_attach(struct comedi_device *dev, struct comedi_devconfig *it)
unsigned long iobase;

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")) {
printk("I/O port conflict\n");
return -EIO;
Expand Down Expand Up @@ -96,14 +96,14 @@ static int pcl725_attach(struct comedi_device *dev, struct comedi_devconfig *it)
s->insn_bits = pcl725_di_insn;
s->range_table = &range_digital;

printk("\n");
printk(KERN_INFO "\n");

return 0;
}

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)
release_region(dev->iobase, PCL725_SIZE);
Expand Down

0 comments on commit 28e1bcf

Please sign in to comment.