From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-path: From: Jagdish Tirumala To: wim@linux-watchdog.org, linux@roeck-us.net, yamada.masahiro@socionext.com Cc: linux-watchdog@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] watchdog: diag288_wdt: pointer location foo * bar should be foo *bar Date: Wed, 12 Sep 2018 10:29:07 -0700 Message-Id: <20180912172907.1802-1-t.jag587@gmail.com> List-ID: Fix the following checkpatch error: ERROR: pointer location foo * bar should be foo *bar FILE: drivers/watchdog/diag288_wdt.c:202 Signed-off-by: Jagdish Tirumala --- drivers/watchdog/diag288_wdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/watchdog/diag288_wdt.c b/drivers/watchdog/diag288_wdt.c index 806a04a676b7..046333d1beb2 100644 --- a/drivers/watchdog/diag288_wdt.c +++ b/drivers/watchdog/diag288_wdt.c @@ -199,7 +199,7 @@ static int wdt_ping(struct watchdog_device *dev) return ret; } -static int wdt_set_timeout(struct watchdog_device * dev, unsigned int new_to) +static int wdt_set_timeout(struct watchdog_device *dev, unsigned int new_to) { dev->timeout = new_to; return wdt_ping(dev); -- 2.17.1