]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Staging: comedi: fix printk issue in das16m1.c
authorRavishankar karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Sat, 19 Nov 2011 04:36:54 +0000 (10:06 +0530)
committerGreg Kroah-Hartman <gregkh@suse.de>
Sun, 27 Nov 2011 02:50:46 +0000 (18:50 -0800)
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: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/das16m1.c

index b8de37488b65eab9451b2be6557e715fc5fa780b..5376e718e3d71089f2010e5ecec46414c9040720 100644 (file)
@@ -667,25 +667,20 @@ static int das16m1_attach(struct comedi_device *dev,
 
        iobase = it->options[0];
 
-       printk("comedi%d: das16m1:", dev->minor);
-
        ret = alloc_private(dev, sizeof(struct das16m1_private_struct));
        if (ret < 0)
                return ret;
 
        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)) {
-               printk(" I/O port conflict\n");
+               comedi_error(dev, "I/O port conflict\n");
                return -EIO;
        }
        if (!request_region(iobase + DAS16M1_82C55, DAS16M1_SIZE2,
                            driver_das16m1.driver_name)) {
                release_region(iobase, DAS16M1_SIZE);
-               printk(" I/O port conflict\n");
+               comedi_error(dev, "I/O port conflict\n");
                return -EIO;
        }
        dev->iobase = iobase;
@@ -696,17 +691,17 @@ static int das16m1_attach(struct comedi_device *dev,
        if (das16m1_irq_bits(irq) >= 0) {
                ret = request_irq(irq, das16m1_interrupt, 0,
                                  driver_das16m1.driver_name, dev);
-               if (ret < 0) {
-                       printk(", irq unavailable\n");
+               if (ret < 0)
                        return ret;
-               }
                dev->irq = irq;
-               printk(", irq %u\n", irq);
+               printk
+                   ("irq %u\n", irq);
        } else if (irq == 0) {
-               printk(", no irq\n");
+               printk
+                   (", no irq\n");
        } else {
-               printk(", invalid irq\n"
-                      " valid irqs are 2, 3, 5, 7, 10, 11, 12, or 15\n");
+               comedi_error(dev, "invalid irq\n"
+                            " valid irqs are 2, 3, 5, 7, 10, 11, 12, or 15\n");
                return -EINVAL;
        }
 
@@ -770,7 +765,6 @@ static int das16m1_attach(struct comedi_device *dev,
 
 static int das16m1_detach(struct comedi_device *dev)
 {
-       printk("comedi%d: das16m1: remove\n", dev->minor);
 
 /* das16m1_reset(dev); */