Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 196982
b: refs/heads/master
c: a2936e0
h: refs/heads/master
v: v3
  • Loading branch information
Stewart Robertson authored and Greg Kroah-Hartman committed May 11, 2010
1 parent d40ff9c commit 52afee6
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: 06033fced289985294e5a3f694646014d80b48cc
refs/heads/master: a2936e0d243d58bbfb3aa048a00ed0bdd2e24307
6 changes: 3 additions & 3 deletions trunk/drivers/staging/comedi/drivers/ni_at_ao.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)
iobase = 0x1c0;
ao_unipolar = it->options[3];

printk("comedi%d: ni_at_ao: 0x%04lx", dev->minor, iobase);
printk(KERN_INFO "comedi%d: ni_at_ao: 0x%04lx", dev->minor, iobase);

if (!request_region(iobase, ATAO_SIZE, "ni_at_ao")) {
printk(" I/O port conflict\n");
Expand Down Expand Up @@ -283,14 +283,14 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)

atao_reset(dev);

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

return 0;
}

static int atao_detach(struct comedi_device *dev)
{
printk("comedi%d: atao: remove\n", dev->minor);
printk(KERN_INFO "comedi%d: atao: remove\n", dev->minor);

if (dev->iobase)
release_region(dev->iobase, ATAO_SIZE);
Expand Down

0 comments on commit 52afee6

Please sign in to comment.