From: Michal Simek Date: Fri, 4 Aug 2017 07:39:17 +0000 (+0200) Subject: watchdog: cadence_wdt: Show information when driver is probed X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f3a7f6f67fc7ec5bb47a6ad6b947d66759e6d9e4;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git watchdog: cadence_wdt: Show information when driver is probed Showing message that driver is loaded is common across drivers. This change also fixes checkpatch (--strict) warning "Alignment should match open parenthesis". Signed-off-by: Michal Simek Reviewed-by: Guenter Roeck Signed-off-by: Guenter Roeck Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/cadence_wdt.c b/drivers/watchdog/cadence_wdt.c index dadd3b0c2d49..064cf7b6c1c5 100644 --- a/drivers/watchdog/cadence_wdt.c +++ b/drivers/watchdog/cadence_wdt.c @@ -368,7 +368,7 @@ static int cdns_wdt_probe(struct platform_device *pdev) } platform_set_drvdata(pdev, wdt); - dev_dbg(&pdev->dev, "Xilinx Watchdog Timer at %p with timeout %ds%s\n", + dev_info(&pdev->dev, "Xilinx Watchdog Timer at %p with timeout %ds%s\n", wdt->regs, cdns_wdt_device->timeout, nowayout ? ", nowayout" : "");