The format specifier "%p" can leak kernel addresses. Use "%pK" instead. Signed-off-by: Benjamin Gaignard <benjamin.gaignard@xxxxxx> --- drivers/watchdog/stm32_iwdg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/watchdog/stm32_iwdg.c b/drivers/watchdog/stm32_iwdg.c index c97ad5619cb0..740f74a98644 100644 --- a/drivers/watchdog/stm32_iwdg.c +++ b/drivers/watchdog/stm32_iwdg.c @@ -172,7 +172,7 @@ static int stm32_iwdg_probe(struct platform_device *pdev) ret = clk_prepare_enable(clk); if (ret) { - dev_err(&pdev->dev, "Unable to prepare clock %p\n", clk); + dev_err(&pdev->dev, "Unable to prepare clock %pK\n", clk); return ret; } -- 2.15.0 -- To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html