From: Sascha Hauer <s.hauer@pengutronix.de> To: Barebox List <barebox@lists.infradead.org> Subject: [PATCH 2/5] pinctrl: Rockchip: print resource_size_t with %pa Date: Tue, 8 Jun 2021 16:05:42 +0200 [thread overview] Message-ID: <20210608140545.30696-3-s.hauer@pengutronix.de> (raw) In-Reply-To: <20210608140545.30696-1-s.hauer@pengutronix.de> resource_size_t is correctly printed with %pa. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> --- drivers/pinctrl/pinctrl-rockchip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pinctrl/pinctrl-rockchip.c b/drivers/pinctrl/pinctrl-rockchip.c index c85109fd2b..3b44847afb 100644 --- a/drivers/pinctrl/pinctrl-rockchip.c +++ b/drivers/pinctrl/pinctrl-rockchip.c @@ -342,8 +342,8 @@ static int rockchip_get_bank_data(struct rockchip_pin_bank *bank, res = request_iomem_region(dev_name(dev), node_res.start, node_res.end); if (IS_ERR(res)) { - dev_err(dev, "cannot request iomem region %08x\n", - node_res.start); + dev_err(dev, "cannot request iomem region %pa\n", + &node_res.start); return PTR_ERR(res); } -- 2.29.2 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2021-06-08 14:07 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-06-08 14:05 [PATCH 0/5] RK3568 pinctrl Sascha Hauer 2021-06-08 14:05 ` [PATCH 1/5] pinctrl: Rockchip: rename mux_offset to grf_mux_offset Sascha Hauer 2021-06-08 14:05 ` Sascha Hauer [this message] 2021-06-08 14:05 ` [PATCH 3/5] pinctrl: Rockchip: Update from Linux Sascha Hauer 2021-06-08 14:05 ` [PATCH 4/5] pinctrl: Rockchip: implement drive strength setting Sascha Hauer 2021-06-09 8:13 ` Ahmad Fatoum 2021-06-08 14:05 ` [PATCH 5/5] pinctrl: Rockchip: Add RK3568 support Sascha Hauer 2021-06-09 8:01 ` Ahmad Fatoum 2021-06-09 9:41 ` Sascha Hauer 2021-06-09 8:11 ` Ahmad Fatoum 2021-06-09 9:45 ` Sascha Hauer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210608140545.30696-3-s.hauer@pengutronix.de \ --to=s.hauer@pengutronix.de \ --cc=barebox@lists.infradead.org \ --subject='Re: [PATCH 2/5] pinctrl: Rockchip: print resource_size_t with %pa' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox