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>
This commit is contained in:
Sachin Kamat 2013-10-08 15:38:08 +05:30 committed by Brian Norris
parent cf3a9b56a1
commit 5422933d58

View file

@ -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;
}