Re: [PATCH v2] drm/drm_bufs.c: In switch, add break in default case

2021-04-20 Thread Daniel Vetter
On Sat, Apr 17, 2021 at 06:15:52PM +0200, Fabio M. De Francesco wrote: > Added a "break" in the default case of a switch select statement. > GCC complains, although this "break" is not strictly necessary > for the code to work as expected. Luckily we already have a comment stating that this is al

[PATCH v2] drm/drm_bufs.c: In switch, add break in default case

2021-04-17 Thread Fabio M. De Francesco
Added a "break" in the default case of a switch select statement. GCC complains, although this "break" is not strictly necessary for the code to work as expected. Signed-off-by: Fabio M. De Francesco --- Changes from v1: Added the reason why of this change in the log. drivers/gpu/drm/drm_bufs