diff mbox series

ARM: omap2: fix a debug printk

Message ID c126dc33-233a-4776-806f-9dff0e73a181@moroto.mountain (mailing list archive)
State New, archived
Headers show
Series ARM: omap2: fix a debug printk | expand

Commit Message

Dan Carpenter Oct. 2, 2023, 7:04 a.m. UTC
The %pR format string takes a pointer to struct resource, but this is
passing a pointer to a pointer which it will print wrong information.

Fixes: c63f5b454885 ("ARM: omap2: Use of_range_to_resource() for "ranges" parsing")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
---
 arch/arm/mach-omap2/omap_hwmod.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tony Lindgren Oct. 7, 2023, 7:43 a.m. UTC | #1
* Dan Carpenter <dan.carpenter@linaro.org> [231002 10:05]:
> The %pR format string takes a pointer to struct resource, but this is
> passing a pointer to a pointer which it will print wrong information.
> 
> Fixes: c63f5b454885 ("ARM: omap2: Use of_range_to_resource() for "ranges" parsing")
> Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>

Thanks applying into fixes.

Regards,

Tony
diff mbox series

Patch

diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
index 1e17b5f77588..ba71928c0fcb 100644
--- a/arch/arm/mach-omap2/omap_hwmod.c
+++ b/arch/arm/mach-omap2/omap_hwmod.c
@@ -2209,7 +2209,7 @@  int omap_hwmod_parse_module_range(struct omap_hwmod *oh,
 		return err;
 
 	pr_debug("omap_hwmod: %s %pOFn at %pR\n",
-		 oh->name, np, &res);
+		 oh->name, np, res);
 
 	if (oh && oh->mpu_rt_idx) {
 		omap_hwmod_fix_mpu_rt_idx(oh, np, res);