diff options
author | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-10-19 09:48:57 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-11-05 22:23:49 +0100 |
commit | 16f2101b4ddb34e4524623425a19cb7bbf7ced9c (patch) | |
tree | 74b6a9bcdd5ea9d1912be32a867409082037204a /drivers/mtd/maps | |
parent | c7f6dc60a319edac986486580b2fc31475ceba11 (diff) | |
download | linux-stable-16f2101b4ddb34e4524623425a19cb7bbf7ced9c.tar.gz linux-stable-16f2101b4ddb34e4524623425a19cb7bbf7ced9c.tar.bz2 linux-stable-16f2101b4ddb34e4524623425a19cb7bbf7ced9c.zip |
mtd: maps: physmap: Use dev_notice() and a %pR specifier
Replace printk(KERN_NOTICE) by dev_notice() use the %pR specifier to
print the iomem resource.
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Reviewed-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r-- | drivers/mtd/maps/physmap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mtd/maps/physmap.c b/drivers/mtd/maps/physmap.c index a097f0cf519a..b98072a67d74 100644 --- a/drivers/mtd/maps/physmap.c +++ b/drivers/mtd/maps/physmap.c @@ -129,9 +129,8 @@ static int physmap_flash_probe(struct platform_device *dev) if (!res) break; - printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n", - (unsigned long long)resource_size(res), - (unsigned long long)res->start); + dev_notice(&dev->dev, "physmap platform flash device: %pR\n", + res); if (!devm_request_mem_region(&dev->dev, res->start, resource_size(res), |