aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrinivas Neeli <[email protected]>2021-03-29 21:49:39 +0530
committerWim Van Sebroeck <[email protected]>2021-06-21 08:49:08 +0200
commit48027d0d9a77e051619f9cd5d311be12a4cb9380 (patch)
tree1ed2bcd15064dfa8250d5a98260022841d053958
parentf185de2231ce3214bb242f56b5d73641d5269508 (diff)
watchdog: of_xilinx_wdt: Skip printing pointer value
"%p" is not printing the pointer value. In driver, printing pointer value is not useful so avoiding print. iSigned-off-by: Srinivas Neeli <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]> Signed-off-by: Wim Van Sebroeck <[email protected]>
-rw-r--r--drivers/watchdog/of_xilinx_wdt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/of_xilinx_wdt.c b/drivers/watchdog/of_xilinx_wdt.c
index afbff79cce42..3318544366b8 100644
--- a/drivers/watchdog/of_xilinx_wdt.c
+++ b/drivers/watchdog/of_xilinx_wdt.c
@@ -245,8 +245,8 @@ static int xwdt_probe(struct platform_device *pdev)
clk_disable(xdev->clk);
- dev_info(dev, "Xilinx Watchdog Timer at %p with timeout %ds\n",
- xdev->base, xilinx_wdt_wdd->timeout);
+ dev_info(dev, "Xilinx Watchdog Timer with timeout %ds\n",
+ xilinx_wdt_wdd->timeout);
platform_set_drvdata(pdev, xdev);