Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/sun4i: tcon: Mark expected switch fall-through

Mark switch cases where we are expecting to fall through.

Fix the following warning (Building: sunxi_defconfig arm):

drivers/gpu/drm/sun4i/sun4i_tcon.c: In function ‘sun4i_tcon0_mode_set_dithering’:
drivers/gpu/drm/sun4i/sun4i_tcon.c:318:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
val |= SUN4I_TCON0_FRM_CTL_MODE_B;
drivers/gpu/drm/sun4i/sun4i_tcon.c:319:2: note: here
case MEDIA_BUS_FMT_RGB666_1X18:
^~~~

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>

+1
+1
drivers/gpu/drm/sun4i/sun4i_tcon.c
··· 314 314 /* R and B components are only 5 bits deep */ 315 315 val |= SUN4I_TCON0_FRM_CTL_MODE_R; 316 316 val |= SUN4I_TCON0_FRM_CTL_MODE_B; 317 + /* Fall through */ 317 318 case MEDIA_BUS_FMT_RGB666_1X18: 318 319 case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG: 319 320 /* Fall through: enable dithering */