linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sam Ravnborg <sam@ravnborg.org>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: linux-kernel@vger.kernel.org, spock@gentoo.org,
	linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	Jason Yan <yanaijie@huawei.com>
Subject: Re: [PATCH] video: uvesafb: use true,false for bool variables
Date: Tue, 02 Jun 2020 20:50:33 +0000	[thread overview]
Message-ID: <20200602205033.GA56418@ravnborg.org> (raw)
In-Reply-To: <4b460d82-b23c-f6ce-6593-735a726e4d8a@samsung.com>

Hi Bartlomiej

On Mon, Jun 01, 2020 at 12:37:00PM +0200, Bartlomiej Zolnierkiewicz wrote:
> 
> Hi,
> 
> On 4/22/20 9:18 AM, Jason Yan wrote:
> > Fix the following coccicheck warning:
> > 
> > drivers/video/fbdev/uvesafb.c:48:12-17: WARNING: Assignment of 0/1 to
> > bool variable
> > drivers/video/fbdev/uvesafb.c:1827:3-13: WARNING: Assignment of 0/1 to
> > bool variable
> > drivers/video/fbdev/uvesafb.c:1829:3-13: WARNING: Assignment of 0/1 to
> > bool variable
> > drivers/video/fbdev/uvesafb.c:1835:3-9: WARNING: Assignment of 0/1 to
> > bool variable
> > drivers/video/fbdev/uvesafb.c:1837:3-9: WARNING: Assignment of 0/1 to
> > bool variable
> > drivers/video/fbdev/uvesafb.c:1839:3-8: WARNING: Assignment of 0/1 to
> > bool variable
> > 
> > Signed-off-by: Jason Yan <yanaijie@huawei.com>
> > ---
> >  drivers/video/fbdev/uvesafb.c | 12 ++++++------
> >  1 file changed, 6 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/video/fbdev/uvesafb.c b/drivers/video/fbdev/uvesafb.c
> > index 1b385cf76110..bee29aadc646 100644
> > --- a/drivers/video/fbdev/uvesafb.c
> > +++ b/drivers/video/fbdev/uvesafb.c
> > @@ -45,7 +45,7 @@ static const struct fb_fix_screeninfo uvesafb_fix = {
> >  };
> >  
> >  static int mtrr		= 3;	/* enable mtrr by default */
> > -static bool blank	= 1;	/* enable blanking by default */
> > +static bool blank	= true;	/* enable blanking by default */
> >  static int ypan		= 1;	/* 0: scroll, 1: ypan, 2: ywrap */
> >  static bool pmi_setpal	= true; /* use PMI for palette changes */
> >  static bool nocrtc;		/* ignore CRTC settings */
> > @@ -1824,19 +1824,19 @@ static int uvesafb_setup(char *options)
> >  		else if (!strcmp(this_opt, "ywrap"))
> >  			ypan = 2;
> >  		else if (!strcmp(this_opt, "vgapal"))
> > -			pmi_setpal = 0;
> > +			pmi_setpal = false;
> >  		else if (!strcmp(this_opt, "pmipal"))
> > -			pmi_setpal = 1;
> > +			pmi_setpal = true;
> >  		else if (!strncmp(this_opt, "mtrr:", 5))
> >  			mtrr = simple_strtoul(this_opt+5, NULL, 0);
> >  		else if (!strcmp(this_opt, "nomtrr"))
> >  			mtrr = 0;
> >  		else if (!strcmp(this_opt, "nocrtc"))
> > -			nocrtc = 1;
> > +			nocrtc = true;
> >  		else if (!strcmp(this_opt, "noedid"))
> > -			noedid = 1;
> > +			noedid = true;
> >  		else if (!strcmp(this_opt, "noblank"))
> > -			blank = 0;
> > +			blank = true;
> 
> The above conversion is incorrect.
> 
> The follow-up fix is included below (the original patch has been
> already applied).
Good spot, sorry for missing this when I applied the original patch.

> 
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
> 
> 
> From: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> Subject: [PATCH] video: fbdev: uvesafb: fix "noblank" option handling
> 
> Fix the recent regression.
> 
> Fixes: dbc7ece12a38 ("video: uvesafb: use true,false for bool variables")
> Cc: Jason Yan <yanaijie@huawei.com>
> Cc: Sam Ravnborg <sam@ravnborg.org>
> Cc: Michal Januszewski <spock@gentoo.org>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>  drivers/video/fbdev/uvesafb.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Index: b/drivers/video/fbdev/uvesafb.c
> =================================> --- a/drivers/video/fbdev/uvesafb.c
> +++ b/drivers/video/fbdev/uvesafb.c
> @@ -1836,7 +1836,7 @@ static int uvesafb_setup(char *options)
>  		else if (!strcmp(this_opt, "noedid"))
>  			noedid = true;
>  		else if (!strcmp(this_opt, "noblank"))
> -			blank = true;
> +			blank = false;
>  		else if (!strncmp(this_opt, "vtotal:", 7))
>  			vram_total = simple_strtoul(this_opt + 7, NULL, 0);
>  		else if (!strncmp(this_opt, "vremap:", 7))

  reply	other threads:[~2020-06-02 20:50 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20200422071952eucas1p219bc9ef0a74220149966ecb03688681c@eucas1p2.samsung.com>
2020-04-22  7:18 ` [PATCH] video: uvesafb: use true,false for bool variables Jason Yan
2020-06-01 10:37   ` Bartlomiej Zolnierkiewicz
2020-06-02 20:50     ` Sam Ravnborg [this message]
2020-06-09  9:29   ` [PATCH v2] video: fbdev: uvesafb: fix "noblank" option handling Bartlomiej Zolnierkiewicz
2020-06-21  8:13     ` Sam Ravnborg

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=20200602205033.GA56418@ravnborg.org \
    --to=sam@ravnborg.org \
    --cc=b.zolnierkie@samsung.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=spock@gentoo.org \
    --cc=yanaijie@huawei.com \
    /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;
as well as URLs for NNTP newsgroup(s).