Merge branch 'i2c/for-5.6' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
[linux-2.6-microblaze.git] / drivers / i2c / busses / i2c-pmcmsp.c
index 4fde74e..5d89c7c 100644 (file)
@@ -274,8 +274,8 @@ static int pmcmsptwi_probe(struct platform_device *pldev)
        if (!request_mem_region(res->start, resource_size(res),
                                pldev->name)) {
                dev_err(&pldev->dev,
-                       "Unable to get memory/io address region 0x%08x\n",
-                       res->start);
+                       "Unable to get memory/io address region %pap\n",
+                       &res->start);
                rc = -EBUSY;
                goto ret_err;
        }
@@ -285,7 +285,7 @@ static int pmcmsptwi_probe(struct platform_device *pldev)
                                                resource_size(res));
        if (!pmcmsptwi_data.iobase) {
                dev_err(&pldev->dev,
-                       "Unable to ioremap address 0x%08x\n", res->start);
+                       "Unable to ioremap address %pap\n", &res->start);
                rc = -EIO;
                goto ret_unreserve;
        }