From: Jingoo Han Date: Tue, 10 Dec 2013 12:25:09 +0000 (+0900) Subject: USB: ohci-omap: use dev_err() instead of printk() X-Git-Tag: upstream/snapshot3+hdmi~3626^2~117 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a3aa0d311c367b6df23a74c50e9a9ba2965e334;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git USB: ohci-omap: use dev_err() instead of printk() Use dev_err() instead of printk() to provide a better message to userspace. Signed-off-by: Jingoo Han Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/ohci-omap.c b/drivers/usb/host/ohci-omap.c index a44a4fe..c923caf 100644 --- a/drivers/usb/host/ohci-omap.c +++ b/drivers/usb/host/ohci-omap.c @@ -311,14 +311,14 @@ static int usb_hcd_omap_probe (const struct hc_driver *driver, struct usb_hcd *hcd = 0; if (pdev->num_resources != 2) { - printk(KERN_ERR "hcd probe: invalid num_resources: %i\n", + dev_err(&pdev->dev, "invalid num_resources: %i\n", pdev->num_resources); return -ENODEV; } if (pdev->resource[0].flags != IORESOURCE_MEM || pdev->resource[1].flags != IORESOURCE_IRQ) { - printk(KERN_ERR "hcd probe: invalid resource type\n"); + dev_err(&pdev->dev, "invalid resource type\n"); return -ENODEV; }