summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-10-08 10:08:08 (GMT)
committerBrian Norris <computersforpeace@gmail.com>2013-11-07 07:32:51 (GMT)
commit5422933d58c28ebc67c7425f20e85ef27b730188 (patch)
tree489abd44434094234227ff5f48628ec7ad41e993 /drivers
parentcf3a9b56a128ec8a1631c29aacb8cf19b55ea73d (diff)
downloadlinux-fsl-qoriq-5422933d58c28ebc67c7425f20e85ef27b730188.tar.xz
mtd: socrates_nand: Use dev_err instead of printk
dev_err is preferred to printk. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/nand/socrates_nand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/socrates_nand.c b/drivers/mtd/nand/socrates_nand.c
index e77da7e..9a9fa49 100644
--- a/drivers/mtd/nand/socrates_nand.c
+++ b/drivers/mtd/nand/socrates_nand.c
@@ -155,7 +155,7 @@ static int socrates_nand_probe(struct platform_device *ofdev)
host->io_base = of_iomap(ofdev->dev.of_node, 0);
if (host->io_base == NULL) {
- printk(KERN_ERR "socrates_nand: ioremap failed\n");
+ dev_err(&ofdev->dev, "ioremap failed\n");
return -EIO;
}