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

Included KERN_facility levels for printk.

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

diff --git a/drivers/staging/comedi/drivers/das1800.c 
b/drivers/staging/comedi/drivers/das1800.c
index a6df30b..da9bdc5 100644
--- a/drivers/staging/comedi/drivers/das1800.c
+++ b/drivers/staging/comedi/drivers/das1800.c
@@ -644,7 +644,7 @@ static int das1800_attach(struct comedi_device *dev,
        printk("\n");
 
        if (iobase == 0) {
-               printk(" io base address required\n");
+               printk(KERN_ERR "io base address required\n");
                return -EINVAL;
        }
 
@@ -659,7 +659,7 @@ static int das1800_attach(struct comedi_device *dev,
 
        board = das1800_probe(dev);
        if (board < 0) {
-               printk(" unable to determine board type\n");
+               printk(KERN_ERR "unable to determine board type\n");
                return -ENODEV;
        }
 
@@ -683,7 +683,7 @@ 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);
+                       printk(KERN_ERR "unable to allocate irq %u\n", irq);
                        return -EINVAL;
                }
        }
@@ -712,7 +712,7 @@ static int das1800_attach(struct comedi_device *dev,
                devpriv->irq_dma_bits |= 0x38;
                break;
        default:
-               printk(" irq out of range\n");
+               printk(KERN_ERR "irq out of range\n");
                return -EINVAL;
                break;
        }
-- 
1.7.0.4

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

Reply via email to