diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-08 15:38:08 +0530 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2013-11-06 23:32:51 -0800 |
commit | 5422933d58c28ebc67c7425f20e85ef27b730188 (patch) | |
tree | 489abd44434094234227ff5f48628ec7ad41e993 /drivers/mtd/nand | |
parent | cf3a9b56a128ec8a1631c29aacb8cf19b55ea73d (diff) | |
download | op-kernel-dev-5422933d58c28ebc67c7425f20e85ef27b730188.zip op-kernel-dev-5422933d58c28ebc67c7425f20e85ef27b730188.tar.gz |
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/mtd/nand')
-rw-r--r-- | drivers/mtd/nand/socrates_nand.c | 2 |
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; } |