Commit 3478f742 authored by Ravishankar karkala Mallikarjunayya's avatar Ravishankar karkala Mallikarjunayya Committed by Greg Kroah-Hartman

Staging: comedi: fix printk issue in das16m1.c

This is a patch to the das16m1.c file that fixes up a printk
warning found by the checkpatch.pl tool.

converted printks to comedi_<level.
Removed an unnecessary printk statment.
Signed-off-by: default avatarRavishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b147ed60
...@@ -667,25 +667,20 @@ static int das16m1_attach(struct comedi_device *dev, ...@@ -667,25 +667,20 @@ static int das16m1_attach(struct comedi_device *dev,
iobase = it->options[0]; iobase = it->options[0];
printk("comedi%d: das16m1:", dev->minor);
ret = alloc_private(dev, sizeof(struct das16m1_private_struct)); ret = alloc_private(dev, sizeof(struct das16m1_private_struct));
if (ret < 0) if (ret < 0)
return ret; return ret;
dev->board_name = thisboard->name; dev->board_name = thisboard->name;
printk(" io 0x%lx-0x%lx 0x%lx-0x%lx",
iobase, iobase + DAS16M1_SIZE,
iobase + DAS16M1_82C55, iobase + DAS16M1_82C55 + DAS16M1_SIZE2);
if (!request_region(iobase, DAS16M1_SIZE, driver_das16m1.driver_name)) { if (!request_region(iobase, DAS16M1_SIZE, driver_das16m1.driver_name)) {
printk(" I/O port conflict\n"); comedi_error(dev, "I/O port conflict\n");
return -EIO; return -EIO;
} }
if (!request_region(iobase + DAS16M1_82C55, DAS16M1_SIZE2, if (!request_region(iobase + DAS16M1_82C55, DAS16M1_SIZE2,
driver_das16m1.driver_name)) { driver_das16m1.driver_name)) {
release_region(iobase, DAS16M1_SIZE); release_region(iobase, DAS16M1_SIZE);
printk(" I/O port conflict\n"); comedi_error(dev, "I/O port conflict\n");
return -EIO; return -EIO;
} }
dev->iobase = iobase; dev->iobase = iobase;
...@@ -696,16 +691,16 @@ static int das16m1_attach(struct comedi_device *dev, ...@@ -696,16 +691,16 @@ static int das16m1_attach(struct comedi_device *dev,
if (das16m1_irq_bits(irq) >= 0) { if (das16m1_irq_bits(irq) >= 0) {
ret = request_irq(irq, das16m1_interrupt, 0, ret = request_irq(irq, das16m1_interrupt, 0,
driver_das16m1.driver_name, dev); driver_das16m1.driver_name, dev);
if (ret < 0) { if (ret < 0)
printk(", irq unavailable\n");
return ret; return ret;
}
dev->irq = irq; dev->irq = irq;
printk(", irq %u\n", irq); printk
("irq %u\n", irq);
} else if (irq == 0) { } else if (irq == 0) {
printk(", no irq\n"); printk
(", no irq\n");
} else { } else {
printk(", invalid irq\n" comedi_error(dev, "invalid irq\n"
" valid irqs are 2, 3, 5, 7, 10, 11, 12, or 15\n"); " valid irqs are 2, 3, 5, 7, 10, 11, 12, or 15\n");
return -EINVAL; return -EINVAL;
} }
...@@ -770,7 +765,6 @@ static int das16m1_attach(struct comedi_device *dev, ...@@ -770,7 +765,6 @@ static int das16m1_attach(struct comedi_device *dev,
static int das16m1_detach(struct comedi_device *dev) static int das16m1_detach(struct comedi_device *dev)
{ {
printk("comedi%d: das16m1: remove\n", dev->minor);
/* das16m1_reset(dev); */ /* das16m1_reset(dev); */
......
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