mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
video: vt8500lcdfb: fix fallthrough warning
commit1c49f35e9eupstream. 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:e41f1a9894("fbdev: Implement simple blanking in pseudocolor modes for vt8500lcdfb") Cc: Alexey Charkov <alchark@gmail.com> Cc: Paul Mundt <lethal@linux-sh.org> Cc: <stable@vger.kernel.org> # v2.6.38+ Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200412202143.GA26948@ravnborg.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
78e6964dce
commit
dc8897b8d3
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user