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

Converted printks to dev_<levels> function.

Signed-off-by: Ravishankar Karkala Mallikarjunayya 
<[email protected]>
---
 drivers/staging/comedi/drivers/pcmad.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/comedi/drivers/pcmad.c 
b/drivers/staging/comedi/drivers/pcmad.c
index fe8ef66..c974523 100644
--- a/drivers/staging/comedi/drivers/pcmad.c
+++ b/drivers/staging/comedi/drivers/pcmad.c
@@ -109,12 +109,11 @@ static int pcmad_attach(struct comedi_device *dev, struct 
comedi_devconfig *it)
        unsigned long iobase;
 
        iobase = it->options[0];
-       printk(KERN_INFO "comedi%d: pcmad: 0x%04lx ", dev->minor, iobase);
+       dev_info(dev->hw_dev, "comedi%d: 0x%04lx\n", dev->minor, iobase);
        if (!request_region(iobase, PCMAD_SIZE, "pcmad")) {
-               printk(KERN_CONT "I/O port conflict\n");
+               dev_err(dev->hw_dev, "I/O port conflict\n");
                return -EIO;
        }
-       printk(KERN_CONT "\n");
        dev->iobase = iobase;
 
        ret = alloc_subdevices(dev, 1);
@@ -141,7 +140,7 @@ static int pcmad_attach(struct comedi_device *dev, struct 
comedi_devconfig *it)
 
 static int pcmad_detach(struct comedi_device *dev)
 {
-       printk(KERN_INFO "comedi%d: pcmad: remove\n", dev->minor);
+       dev_info(dev->hw_dev, "comedi%d: remove\n", dev->minor);
 
        if (dev->irq)
                free_irq(dev->irq, dev);
-- 
1.7.0.4

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to