Staging: comedi: fix printk issue in das1800.c
authorRavishankar karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Mon, 12 Dec 2011 05:19:31 +0000 (10:49 +0530)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 14 Dec 2011 00:33:38 +0000 (16:33 -0800)
This is a patch to the das1800.c file that fixes up a
printk warning found by the checkpatch.pl tool.

Coverted printks to dev_<levels>.

Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/das1800.c

index e89db9a9a0a4143be259b258f298de7ec8ef8581..1ea97896b6bd9de4865f99d6b6650527f13121b4 100644 (file)
@@ -660,7 +660,7 @@ static int das1800_attach(struct comedi_device *dev,
 
        board = das1800_probe(dev);
        if (board < 0) {
-               printk(" unable to determine board type\n");
+               dev_err(dev->hw_dev, "unable to determine board type\n");
                return -ENODEV;
        }
 
@@ -684,7 +684,8 @@ static int das1800_attach(struct comedi_device *dev,
        if (irq) {
                if (request_irq(irq, das1800_interrupt, 0,
                                driver_das1800.driver_name, dev)) {
-                       printk(" unable to allocate irq %u\n", irq);
+                       dev_dbg(dev->hw_dev, "unable to allocate irq %u\n",
+                               irq);
                        return -EINVAL;
                }
        }
@@ -713,7 +714,7 @@ static int das1800_attach(struct comedi_device *dev,
                devpriv->irq_dma_bits |= 0x38;
                break;
        default:
-               printk(" irq out of range\n");
+               dev_err(dev->hw_dev, "irq out of range\n");
                return -EINVAL;
                break;
        }