Staging: comedi: fix printk issue in ni_pcimio.c
authorRavishankar karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Mon, 21 Nov 2011 10:37:04 +0000 (16:07 +0530)
committerGreg Kroah-Hartman <gregkh@suse.de>
Sun, 27 Nov 2011 02:51:40 +0000 (18:51 -0800)
This is a patch to the ni_pcimio.c file that fixes up a printk
warning found by the checkpatch.pl tool.
Converted printks to dev_<level> and pr_<level>.

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

index 99f762d3f53064be5d74cbcb3a7320088f0cdd2e..0b99d9647fb5fddc39a73ccedcda23ddb8c9727c 100644 (file)
@@ -1684,7 +1684,7 @@ static int pcimio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 {
        int ret;
 
-       printk("comedi%d: ni_pcimio:", dev->minor);
+       dev_info(dev->hw_dev, "comedi%d: ni_pcimio:\n", dev->minor);
 
        ret = ni_alloc_private(dev);
        if (ret < 0)
@@ -1694,7 +1694,7 @@ static int pcimio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
        if (ret < 0)
                return ret;
 
-       printk(" %s", boardtype.name);
+       dev_dbg(dev->hw_dev, "%s\n", boardtype.name);
        dev->board_name = boardtype.name;
 
        if (boardtype.reg_type & ni_reg_m_series_mask) {
@@ -1711,7 +1711,7 @@ static int pcimio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 
        ret = mite_setup(devpriv->mite);
        if (ret < 0) {
-               printk(" error setting up mite\n");
+               pr_warn("error setting up mite\n");
                return ret;
        }
        comedi_set_hw_dev(dev, &devpriv->mite->pcidev->dev);
@@ -1739,13 +1739,13 @@ static int pcimio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
        dev->irq = mite_irq(devpriv->mite);
 
        if (dev->irq == 0) {
-               printk(" unknown irq (bad)\n");
+               pr_warn("unknown irq (bad)\n");
        } else {
-               printk(" ( irq = %u )", dev->irq);
+               pr_debug("( irq = %u )\n", dev->irq);
                ret = request_irq(dev->irq, ni_E_interrupt, NI_E_IRQ_FLAGS,
                                  DRV_NAME, dev);
                if (ret < 0) {
-                       printk(" irq not available\n");
+                       pr_warn("irq not available\n");
                        dev->irq = 0;
                }
        }
@@ -1786,7 +1786,7 @@ static int pcimio_find_device(struct comedi_device *dev, int bus, int slot)
                        }
                }
        }
-       printk("no device found\n");
+       pr_warn("no device found\n");
        mite_list_devices();
        return -EIO;
 }
This page took 0.259794 seconds and 5 git commands to generate.