diff options
author | Srinivas Neeli <srinivas.neeli@xilinx.com> | 2019-12-20 12:28:16 +0530 |
---|---|---|
committer | Wim Van Sebroeck <wim@linux-watchdog.org> | 2020-01-27 15:55:46 +0100 |
commit | b1301b9022e9769f3228a353a83bb9623c0f6e41 (patch) | |
tree | 3d4d6c37031835a257942aace34a15239bdc578a /drivers/watchdog/cadence_wdt.c | |
parent | e0b4f4e0cf7fa9d62628d4249c765ec18dffd143 (diff) | |
download | linux-b1301b9022e9769f3228a353a83bb9623c0f6e41.tar.gz linux-b1301b9022e9769f3228a353a83bb9623c0f6e41.tar.bz2 linux-b1301b9022e9769f3228a353a83bb9623c0f6e41.zip |
watchdog: cadence: Skip printing pointer value
"%p" is not printing the pointer value.
In driver, printing pointer value is not useful so avoiding print.
Signed-off-by: Srinivas Neeli <srinivas.neeli@xilinx.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/1576825096-26605-1-git-send-email-srinivas.neeli@xilinx.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Diffstat (limited to 'drivers/watchdog/cadence_wdt.c')
-rw-r--r-- | drivers/watchdog/cadence_wdt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/watchdog/cadence_wdt.c b/drivers/watchdog/cadence_wdt.c index 06bd4e1a5923..672b184da875 100644 --- a/drivers/watchdog/cadence_wdt.c +++ b/drivers/watchdog/cadence_wdt.c @@ -369,9 +369,8 @@ static int cdns_wdt_probe(struct platform_device *pdev) return ret; platform_set_drvdata(pdev, wdt); - dev_info(dev, "Xilinx Watchdog Timer at %p with timeout %ds%s\n", - wdt->regs, cdns_wdt_device->timeout, - nowayout ? ", nowayout" : ""); + dev_info(dev, "Xilinx Watchdog Timer with timeout %ds%s\n", + cdns_wdt_device->timeout, nowayout ? ", nowayout" : ""); return 0; } |