Staging: comedi: fix KERN_facility level coding style issue in adl_pci9118.c
authorMaurice Dawson <mauricedawson2699@googlemail.com>
Fri, 19 Mar 2010 14:20:10 +0000 (14:20 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 11 May 2010 18:35:31 +0000 (11:35 -0700)
This is a patch to the adl_pci9118.c file that fixes WARNING: printk() should include KERN_facility level found by the checkpatch.pl tool

Signed-off-by: Maurice Dawson <mauricedawson2699@googlemail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/adl_pci9118.c

index 4f9fd7dd0cf26a23c92454f1f65653d8dd54f8f6..2205113ee4359b3d796231b1a71ffd547c4bb94b 100644 (file)
@@ -750,9 +750,8 @@ static void interrupt_pci9118_ai_dma(struct comedi_device *dev,
                comedi_event(dev, s);
                return;
        }
-
        if (int_adstat & devpriv->ai_maskerr)
-/* if (int_adstat & 0x106) */
+                                       /* if (int_adstat & 0x106) */
                if (pci9118_decode_error_status(dev, s, int_adstat))
                        return;
 
@@ -2215,10 +2214,10 @@ static int pci9118_attach(struct comedi_device *dev,
 
        if (!pcidev) {
                if (opt_bus || opt_slot) {
-                       printk(" - Card at b:s %d:%d %s\n",
+                       printk(KERN_ERR " - Card at b:s %d:%d %s\n",
                               opt_bus, opt_slot, errstr);
                } else {
-                       printk(" - Card %s\n", errstr);
+                       printk(KERN_ERR " - Card %s\n", errstr);
                }
                return -EIO;
        }
@@ -2234,8 +2233,8 @@ static int pci9118_attach(struct comedi_device *dev,
        iobase_a = pci_resource_start(pcidev, 0);
        iobase_9 = pci_resource_start(pcidev, 2);
 
-       printk(", b:s:f=%d:%d:%d, io=0x%4lx, 0x%4lx", pci_bus, pci_slot,
-              pci_func, iobase_9, iobase_a);
+       printk(KERN_ERR ", b:s:f=%d:%d:%d, io=0x%4lx, 0x%4lx", pci_bus,
+                               pci_slot, pci_func, iobase_9, iobase_a);
 
        dev->iobase = iobase_9;
        dev->board_name = this_board->name;