Commit a2936e0d authored by Stewart Robertson's avatar Stewart Robertson Committed by Greg Kroah-Hartman

Staging: comedi: add missing KERN_INFO in ni_at_ao.c

This is a patch to the ni_at_ao.c file that adds the missing
KERN_INFO requested by the checkpatch.pl tool.
Signed-off-by: default avatarStewart Robertson <stewart_r@aliencamel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 06033fce
...@@ -226,7 +226,7 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -226,7 +226,7 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)
iobase = 0x1c0; iobase = 0x1c0;
ao_unipolar = it->options[3]; 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")) { if (!request_region(iobase, ATAO_SIZE, "ni_at_ao")) {
printk(" I/O port conflict\n"); printk(" I/O port conflict\n");
...@@ -283,14 +283,14 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -283,14 +283,14 @@ static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)
atao_reset(dev); atao_reset(dev);
printk("\n"); printk(KERN_INFO "\n");
return 0; return 0;
} }
static int atao_detach(struct comedi_device *dev) 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) if (dev->iobase)
release_region(dev->iobase, ATAO_SIZE); release_region(dev->iobase, ATAO_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