[PATCH 10/18] video: annotate switch/case fall-through
Tom Rini
trini at konsulko.com
Mon Mar 31 18:01:06 CEST 2025
On Thu, Mar 27, 2025 at 03:33:05PM +0000, Andre Przywara wrote:
> The generic DM video code uses an implicit switch/case fallthrough to
> provide fallback code paths when certain colour depths are not enabled.
>
> Add our "fallthrough;" statement-like macro to the video_fill() function
> to avoid a warning when GCC's -Wimplicit-fallthrough warning option is
> enabled.
>
> Signed-off-by: Andre Przywara <andre.przywara at arm.com>
> ---
> drivers/video/video-uclass.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c
> index ff4f2199585..c684c994b61 100644
> --- a/drivers/video/video-uclass.c
> +++ b/drivers/video/video-uclass.c
> @@ -245,6 +245,7 @@ int video_fill(struct udevice *dev, u32 colour)
> *ppix++ = colour;
> break;
> }
> + fallthrough;
> case VIDEO_BPP32:
> if (CONFIG_IS_ENABLED(VIDEO_BPP32)) {
> u32 *ppix = priv->fb;
> @@ -254,6 +255,7 @@ int video_fill(struct udevice *dev, u32 colour)
> *ppix++ = colour;
> break;
> }
> + fallthrough;
> default:
> memset(priv->fb, colour, priv->fb_size);
> break;
Reviewed-by: Tom Rini <trini at konsulko.com>
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20250331/6601d3bc/attachment.sig>
More information about the U-Boot
mailing list