aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/watchdog/orion_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/orion_wdt.c b/drivers/watchdog/orion_wdt.c
index 15321aa0bb94..6f9b4c6e9bca 100644
--- a/drivers/watchdog/orion_wdt.c
+++ b/drivers/watchdog/orion_wdt.c
@@ -269,7 +269,7 @@ static void __iomem *orion_wdt_ioremap_rstout(struct platform_device *pdev,
269 269
270 rstout = internal_regs + ORION_RSTOUT_MASK_OFFSET; 270 rstout = internal_regs + ORION_RSTOUT_MASK_OFFSET;
271 271
272 WARN(1, FW_BUG "falling back to harcoded RSTOUT reg 0x%x\n", rstout); 272 WARN(1, FW_BUG "falling back to harcoded RSTOUT reg %pa\n", &rstout);
273 return devm_ioremap(&pdev->dev, rstout, 0x4); 273 return devm_ioremap(&pdev->dev, rstout, 0x4);
274} 274}
275 275