Skip to content

Commit

Permalink
staging: comedi: multiq3: add KERN_
Browse files Browse the repository at this point in the history
Add KERN_ to printk statements to reduce the number of warnings
shown by checkpatch.pl.

Signed-off-by: Klaas van Gend <klaas.van.gend@mvista.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Klaas van Gend authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent 446176a commit c5dba43
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions drivers/staging/comedi/drivers/multiq3.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,19 +252,20 @@ static int multiq3_attach(struct comedi_device *dev,
struct comedi_subdevice *s;

iobase = it->options[0];
printk("comedi%d: multiq3: 0x%04lx ", dev->minor, iobase);
printk(KERN_INFO "comedi%d: multiq3: 0x%04lx ", dev->minor, iobase);
if (!request_region(iobase, MULTIQ3_SIZE, "multiq3")) {
printk("comedi%d: I/O port conflict\n", dev->minor);
printk(KERN_ERR "comedi%d: I/O port conflict\n", dev->minor);
return -EIO;
}

dev->iobase = iobase;

irq = it->options[1];
if (irq)
printk("comedi%d: irq = %u ignored\n", dev->minor, irq);
printk(KERN_WARNING "comedi%d: irq = %u ignored\n",
dev->minor, irq);
else
printk("comedi%d: no irq\n", dev->minor);
printk(KERN_WARNING "comedi%d: no irq\n", dev->minor);
dev->board_name = "multiq3";
result = alloc_subdevices(dev, 5);
if (result < 0)
Expand Down Expand Up @@ -328,7 +329,7 @@ static int multiq3_attach(struct comedi_device *dev,

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

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

0 comments on commit c5dba43

Please sign in to comment.