Commit 7189ba93 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

drivers/uwb: Use printf extension %pR for struct resource

Using %pR standardizes the struct resource output.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent cc7e6056
...@@ -54,11 +54,8 @@ int umc_device_register(struct umc_dev *umc) ...@@ -54,11 +54,8 @@ int umc_device_register(struct umc_dev *umc)
err = request_resource(umc->resource.parent, &umc->resource); err = request_resource(umc->resource.parent, &umc->resource);
if (err < 0) { if (err < 0) {
dev_err(&umc->dev, "can't allocate resource range " dev_err(&umc->dev, "can't allocate resource range %pR: %d\n",
"%016Lx to %016Lx: %d\n", &umc->resource, err);
(unsigned long long)umc->resource.start,
(unsigned long long)umc->resource.end,
err);
goto error_request_resource; goto error_request_resource;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment