[MTD] [MAPS] Fix missing printk() parameter in physmap_of.c MTD driver

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Wed May 9 04:59:01 EDT 2007


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=2d0fa586facb740b9ef9a01dcedc94c126c6f148
Commit:     2d0fa586facb740b9ef9a01dcedc94c126c6f148
Parent:     711fdf627ce1374796632f16acec1ab63d11e38f
Author:     David Gibson <david at gibson.dropbear.id.au>
AuthorDate: Wed May 9 11:55:51 2007 +1000
Committer:  David Woodhouse <dwmw2 at infradead.org>
CommitDate: Wed May 9 09:38:48 2007 +0100

    [MTD] [MAPS] Fix missing printk() parameter in physmap_of.c MTD driver
    
    Squashes a compiler warning, and provides more useful information in
    the case messed up device tree information.
    
    Signed-off-by: David Gibson <david at gibson.dropbear.id.au>
    Signed-off-by: David Woodhouse <dwmw2 at infradead.org>
---
 drivers/mtd/maps/physmap_of.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 7efe744..8ec2fbe 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -186,7 +186,7 @@ static int __devinit of_physmap_probe(struct of_device *dev, const struct of_dev
 	else {
  		if (strcmp(of_probe, "ROM"))
 			dev_dbg(&dev->dev, "map_probe: don't know probe type "
-			"'%s', mapping as rom\n");
+			"'%s', mapping as rom\n", of_probe);
 		info->mtd = do_map_probe("mtd_rom", &info->map);
 	}
 	if (info->mtd == NULL) {



More information about the linux-mtd-cvs mailing list