linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] staging/comedi: Use dev_ printks in drivers/adl_pci9118.c
@ 2012-11-03 13:38 YAMANE Toshiaki
  2012-11-13 19:20 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 2+ messages in thread
From: YAMANE Toshiaki @ 2012-11-03 13:38 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Ian Abbott, Frank Mori Hess, linux-kernel, YAMANE Toshiaki

fixed below checkpatch warnings.
- WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(...  to printk(KERN_ERR ...

Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
---
 drivers/staging/comedi/drivers/adl_pci9118.c |   31 ++++++++++++++------------
 1 file changed, 17 insertions(+), 14 deletions(-)

diff --git a/drivers/staging/comedi/drivers/adl_pci9118.c b/drivers/staging/comedi/drivers/adl_pci9118.c
index a5d0be2..e9d45c2 100644
--- a/drivers/staging/comedi/drivers/adl_pci9118.c
+++ b/drivers/staging/comedi/drivers/adl_pci9118.c
@@ -1888,7 +1888,7 @@ static struct pci_dev *pci9118_find_pci(struct comedi_device *dev,
 		 */
 		if (comedi_pci_enable(pcidev, "adl_pci9118"))
 			continue;
-		printk(KERN_ERR ", b:s:f=%d:%d:%d, io=0x%4lx, 0x%4lx",
+		dev_err(dev->class_dev, ", b:s:f=%d:%d:%d, io=0x%4lx, 0x%4lx",
 			pcidev->bus->number,
 			PCI_SLOT(pcidev->devfn),
 			PCI_FUNC(pcidev->devfn),
@@ -1896,9 +1896,9 @@ static struct pci_dev *pci9118_find_pci(struct comedi_device *dev,
 			(unsigned long)pci_resource_start(pcidev, 0));
 		return pcidev;
 	}
-	printk(KERN_ERR
-		"comedi%d: no supported board found! (req. bus/slot : %d/%d)\n",
-		dev->minor, bus, slot);
+	dev_err(dev->class_dev,
+		"no supported board found! (req. bus/slot : %d/%d)\n",
+		bus, slot);
 	return NULL;
 }
 
@@ -1914,7 +1914,7 @@ static int pci9118_attach(struct comedi_device *dev,
 	unsigned int irq;
 	u16 u16w;
 
-	printk("comedi%d: adl_pci9118: board=%s", dev->minor, this_board->name);
+	dev_dbg(dev->class_dev, "board=%s", this_board->name);
 
 	if (it->options[3] & 1)
 		master = 0;	/* user don't want use bus master */
@@ -1947,14 +1947,15 @@ static int pci9118_attach(struct comedi_device *dev,
 	if (irq > 0) {
 		if (request_irq(irq, interrupt_pci9118, IRQF_SHARED,
 				"ADLink PCI-9118", dev)) {
-			printk(", unable to allocate IRQ %d, DISABLING IT",
-			       irq);
+			dev_dbg(dev->class_dev,
+				", unable to allocate IRQ %d, DISABLING IT",
+				irq);
 			irq = 0;	/* Can't use IRQ */
 		} else {
-			printk(", irq=%u", irq);
+			dev_dbg(dev->class_dev, ", irq=%u", irq);
 		}
 	} else {
-		printk(", IRQ disabled");
+		dev_dbg(dev->class_dev, ", IRQ disabled");
 	}
 
 	dev->irq = irq;
@@ -1980,7 +1981,8 @@ static int pci9118_attach(struct comedi_device *dev,
 			}
 		}
 		if (!devpriv->dmabuf_virt[0]) {
-			printk(", Can't allocate DMA buffer, DMA disabled!");
+			dev_dbg(dev->class_dev,
+				", Can't allocate DMA buffer, DMA disabled!");
 			master = 0;
 		}
 
@@ -1991,9 +1993,9 @@ static int pci9118_attach(struct comedi_device *dev,
 
 	devpriv->master = master;
 	if (devpriv->master)
-		printk(", bus master");
+		dev_dbg(dev->class_dev, ", bus master");
 	else
-		printk(", no bus master");
+		dev_dbg(dev->class_dev, ", no bus master");
 
 	devpriv->usemux = 0;
 	if (it->options[2] > 0) {
@@ -2005,7 +2007,8 @@ static int pci9118_attach(struct comedi_device *dev,
 				devpriv->usemux = 128;
 					/* max 128 channels with softare S&H! */
 			}
-		printk(", ext. mux %d channels", devpriv->usemux);
+		dev_dbg(dev->class_dev,
+			", ext. mux %d channels", devpriv->usemux);
 	}
 
 	devpriv->softsshdelay = it->options[4];
@@ -2019,7 +2022,7 @@ static int pci9118_attach(struct comedi_device *dev,
 		devpriv->softsshhold = 0x80;
 	}
 
-	printk(".\n");
+	dev_dbg(dev->class_dev, ".\n");
 
 	pci_read_config_word(pcidev, PCI_COMMAND, &u16w);
 	pci_write_config_word(pcidev, PCI_COMMAND, u16w | 64);
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] staging/comedi: Use dev_ printks in drivers/adl_pci9118.c
  2012-11-03 13:38 [PATCH] staging/comedi: Use dev_ printks in drivers/adl_pci9118.c YAMANE Toshiaki
@ 2012-11-13 19:20 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2012-11-13 19:20 UTC (permalink / raw)
  To: YAMANE Toshiaki; +Cc: Ian Abbott, Frank Mori Hess, linux-kernel

On Sat, Nov 03, 2012 at 10:38:03PM +0900, YAMANE Toshiaki wrote:
> fixed below checkpatch warnings.
> - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(...  to printk(KERN_ERR ...
> 
> Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
> ---
>  drivers/staging/comedi/drivers/adl_pci9118.c |   31 ++++++++++++++------------
>  1 file changed, 17 insertions(+), 14 deletions(-)

This does not apply at all, sorry.

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-11-13 19:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-03 13:38 [PATCH] staging/comedi: Use dev_ printks in drivers/adl_pci9118.c YAMANE Toshiaki
2012-11-13 19:20 ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).