Linux Watchdog driver development
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: Jiapeng Zhong <abaci-bugfix@linux.alibaba.com>
Cc: jerry.hoemann@hpe.com, wim@linux-watchdog.org,
	linux-watchdog@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] watchdog/hpwdt: Assign boolean values to a bool variable
Date: Sat, 23 Jan 2021 09:19:18 -0800	[thread overview]
Message-ID: <20210123171918.GA55938@roeck-us.net> (raw)
In-Reply-To: <1611128890-79204-1-git-send-email-abaci-bugfix@linux.alibaba.com>

On Wed, Jan 20, 2021 at 03:48:10PM +0800, Jiapeng Zhong wrote:
> Fix the following coccicheck warnings:
> 
>  ./drivers/watchdog/hpwdt.c:345:2-12: WARNING: Assignment of
> 0/1 to bool variable.
> 
> ./drivers/watchdog/hpwdt.c:126:2-12: WARNING: Assignment of
> 0/1 to bool variable.
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Jiapeng Zhong <abaci-bugfix@linux.alibaba.com>
> Reviewed-by: Jerry Hoemann <jerry.hoemann@hpe.com>
> Reviewed-by: Guenter Roeck <linux@roeck-us.net>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>  drivers/watchdog/hpwdt.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c
> index cbd1498..22ddba3 100644
> --- a/drivers/watchdog/hpwdt.c
> +++ b/drivers/watchdog/hpwdt.c
> @@ -123,7 +123,7 @@ static int hpwdt_settimeout(struct watchdog_device *wdd, unsigned int val)
>  	if (val <= wdd->pretimeout) {
>  		dev_dbg(wdd->parent, "pretimeout < timeout. Setting to zero\n");
>  		wdd->pretimeout = 0;
> -		pretimeout = 0;
> +		pretimeout = false;
>  		if (watchdog_active(wdd))
>  			hpwdt_start(wdd);
>  	}
> @@ -336,13 +336,13 @@ static int hpwdt_init_one(struct pci_dev *dev,
>  	watchdog_init_timeout(&hpwdt_dev, soft_margin, NULL);
>  
>  	if (is_kdump_kernel()) {
> -		pretimeout = 0;
> +		pretimeout = false;
>  		kdumptimeout = 0;
>  	}
>  
>  	if (pretimeout && hpwdt_dev.timeout <= PRETIMEOUT_SEC) {
>  		dev_warn(&dev->dev, "timeout <= pretimeout. Setting pretimeout to zero\n");
> -		pretimeout = 0;
> +		pretimeout = false;
>  	}
>  	hpwdt_dev.pretimeout = pretimeout ? PRETIMEOUT_SEC : 0;
>  	kdumptimeout = min(kdumptimeout, HPWDT_MAX_TIMER);

      parent reply	other threads:[~2021-01-23 17:20 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-20  7:48 [PATCH] watchdog/hpwdt: Assign boolean values to a bool variable Jiapeng Zhong
2021-01-20 17:52 ` Jerry Hoemann
2021-01-20 19:05 ` Guenter Roeck
2021-01-23 17:19 ` Guenter Roeck [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210123171918.GA55938@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=abaci-bugfix@linux.alibaba.com \
    --cc=jerry.hoemann@hpe.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=wim@linux-watchdog.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox