]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/draw: fix color truncation in drm_draw_fill24
authorFrancesco Valla <francesco@valla.it>
Fri, 3 Oct 2025 10:33:03 +0000 (12:33 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Oct 2025 14:20:35 +0000 (16:20 +0200)
[ Upstream commit 095232711f23179053ca26bcf046ca121a91a465 ]

The color parameter passed to drm_draw_fill24() was truncated to 16
bits, leading to an incorrect color drawn to the target iosys_map.
Fix this behavior, widening the parameter to 32 bits.

Fixes: 31fa2c1ca0b2 ("drm/panic: Move drawing functions to drm_draw")
Signed-off-by: Francesco Valla <francesco@valla.it>
Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>
Link: https://lore.kernel.org/r/20251003-drm_draw_fill24_fix-v1-1-8fb7c1c2a893@valla.it
Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/drm_draw.c
drivers/gpu/drm/drm_draw_internal.h

index d41f8ae1c148338aa656e19d3067f5f71b02f0d3..b61ebc5bdd5cef910dc2f2139660a234a965e201 100644 (file)
@@ -125,7 +125,7 @@ EXPORT_SYMBOL(drm_draw_fill16);
 
 void drm_draw_fill24(struct iosys_map *dmap, unsigned int dpitch,
                     unsigned int height, unsigned int width,
-                    u16 color)
+                    u32 color)
 {
        unsigned int y, x;
 
index f121ee7339dc11537f677c833f0ee94fe0e799cd..20cb404e23ea6263b535ea2b81b25f84c37be8a2 100644 (file)
@@ -47,7 +47,7 @@ void drm_draw_fill16(struct iosys_map *dmap, unsigned int dpitch,
 
 void drm_draw_fill24(struct iosys_map *dmap, unsigned int dpitch,
                     unsigned int height, unsigned int width,
-                    u16 color);
+                    u32 color);
 
 void drm_draw_fill32(struct iosys_map *dmap, unsigned int dpitch,
                     unsigned int height, unsigned int width,