[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@gibson.dropbear.id.au>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>

authored by David Gibson and committed by David Woodhouse 2d0fa586 711fdf62

+1 -1
+1 -1
drivers/mtd/maps/physmap_of.c
··· 186 else { 187 if (strcmp(of_probe, "ROM")) 188 dev_dbg(&dev->dev, "map_probe: don't know probe type " 189 - "'%s', mapping as rom\n"); 190 info->mtd = do_map_probe("mtd_rom", &info->map); 191 } 192 if (info->mtd == NULL) {
··· 186 else { 187 if (strcmp(of_probe, "ROM")) 188 dev_dbg(&dev->dev, "map_probe: don't know probe type " 189 + "'%s', mapping as rom\n", of_probe); 190 info->mtd = do_map_probe("mtd_rom", &info->map); 191 } 192 if (info->mtd == NULL) {