From: Jingoo Han Date: Thu, 26 Dec 2013 03:31:52 +0000 (+0900) Subject: mtd: orion_nand: use dev_err() instead of printk() X-Git-Tag: next-20140106~56^2~10 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e3f8b1d728584fb71ed6c971a55e6a421eb18c3d;p=karo-tx-linux.git mtd: orion_nand: 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: Brian Norris --- diff --git a/drivers/mtd/nand/orion_nand.c b/drivers/mtd/nand/orion_nand.c index a6a4a20f6069..dd7fe817eafb 100644 --- a/drivers/mtd/nand/orion_nand.c +++ b/drivers/mtd/nand/orion_nand.c @@ -100,7 +100,7 @@ static int __init orion_nand_probe(struct platform_device *pdev) io_base = ioremap(res->start, resource_size(res)); if (!io_base) { - printk(KERN_ERR "orion_nand: ioremap failed\n"); + dev_err(&pdev->dev, "ioremap failed\n"); ret = -EIO; goto no_res; }