* [PATCH] video: vt8500lcdfb: fix fallthrough warning @ 2020-04-12 20:21 ` Sam Ravnborg 2020-04-17 14:08 ` Bartlomiej Zolnierkiewicz 0 siblings, 1 reply; 2+ messages in thread From: Sam Ravnborg @ 2020-04-12 20:21 UTC (permalink / raw) To: dri-devel, linux-fbdev Cc: Paul Mundt, Alexey Charkov, Bartlomiej Zolnierkiewicz Fix following warning: vt8500lcdfb.c: In function 'vt8500lcd_blank': vt8500lcdfb.c:229:6: warning: this statement may fall through [-Wimplicit-fallthrough=] if (info->fix.visual = FB_VISUAL_PSEUDOCOLOR || ^ vt8500lcdfb.c:233:2: note: here case FB_BLANK_UNBLANK: ^~~~ Adding a simple "fallthrough;" fixed the warning. The fix was build tested. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Reported-by: kbuild test robot <lkp@intel.com> Fixes: e41f1a989408 ("fbdev: Implement simple blanking in pseudocolor modes for vt8500lcdfb") Cc: Alexey Charkov <alchark@gmail.com> Cc: Paul Mundt <lethal@linux-sh.org> Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Cc: dri-devel@lists.freedesktop.org Cc: linux-fbdev@vger.kernel.org Cc: <stable@vger.kernel.org> # v2.6.38+ --- drivers/video/fbdev/vt8500lcdfb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/fbdev/vt8500lcdfb.c b/drivers/video/fbdev/vt8500lcdfb.c index f744479dc7df..c61476247ba8 100644 --- a/drivers/video/fbdev/vt8500lcdfb.c +++ b/drivers/video/fbdev/vt8500lcdfb.c @@ -230,6 +230,7 @@ static int vt8500lcd_blank(int blank, struct fb_info *info) info->fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR) for (i = 0; i < 256; i++) vt8500lcd_setcolreg(i, 0, 0, 0, 0, info); + fallthrough; case FB_BLANK_UNBLANK: if (info->fix.visual = FB_VISUAL_PSEUDOCOLOR || info->fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR) -- 2.20.1 ^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] video: vt8500lcdfb: fix fallthrough warning 2020-04-12 20:21 ` [PATCH] video: vt8500lcdfb: fix fallthrough warning Sam Ravnborg @ 2020-04-17 14:08 ` Bartlomiej Zolnierkiewicz 0 siblings, 0 replies; 2+ messages in thread From: Bartlomiej Zolnierkiewicz @ 2020-04-17 14:08 UTC (permalink / raw) To: Sam Ravnborg; +Cc: linux-fbdev, Paul Mundt, Alexey Charkov, dri-devel On 4/12/20 10:21 PM, Sam Ravnborg wrote: > Fix following warning: > vt8500lcdfb.c: In function 'vt8500lcd_blank': > vt8500lcdfb.c:229:6: warning: this statement may fall through [-Wimplicit-fallthrough=] > if (info->fix.visual = FB_VISUAL_PSEUDOCOLOR || > ^ > vt8500lcdfb.c:233:2: note: here > case FB_BLANK_UNBLANK: > ^~~~ > > Adding a simple "fallthrough;" fixed the warning. > The fix was build tested. > > Signed-off-by: Sam Ravnborg <sam@ravnborg.org> > Reported-by: kbuild test robot <lkp@intel.com> > Fixes: e41f1a989408 ("fbdev: Implement simple blanking in pseudocolor modes for vt8500lcdfb") > Cc: Alexey Charkov <alchark@gmail.com> > Cc: Paul Mundt <lethal@linux-sh.org> > Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> > Cc: dri-devel@lists.freedesktop.org > Cc: linux-fbdev@vger.kernel.org > Cc: <stable@vger.kernel.org> # v2.6.38+ Patch queued for v5.8, thanks. Best regards, -- Bartlomiej Zolnierkiewicz Samsung R&D Institute Poland Samsung Electronics > --- > drivers/video/fbdev/vt8500lcdfb.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/video/fbdev/vt8500lcdfb.c b/drivers/video/fbdev/vt8500lcdfb.c > index f744479dc7df..c61476247ba8 100644 > --- a/drivers/video/fbdev/vt8500lcdfb.c > +++ b/drivers/video/fbdev/vt8500lcdfb.c > @@ -230,6 +230,7 @@ static int vt8500lcd_blank(int blank, struct fb_info *info) > info->fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR) > for (i = 0; i < 256; i++) > vt8500lcd_setcolreg(i, 0, 0, 0, 0, info); > + fallthrough; > case FB_BLANK_UNBLANK: > if (info->fix.visual = FB_VISUAL_PSEUDOCOLOR || > info->fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR) > ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-04-17 14:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20200412202152eucas1p13ca8cce6878a1184f5450e88e035c4ea@eucas1p1.samsung.com>
2020-04-12 20:21 ` [PATCH] video: vt8500lcdfb: fix fallthrough warning Sam Ravnborg
2020-04-17 14:08 ` Bartlomiej Zolnierkiewicz
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).