]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/tests: Fix drm_test_fb_xrgb8888_to_xrgb2101010() on big-endian
authorJosé Expósito <jose.exposito89@gmail.com>
Mon, 30 Jun 2025 09:00:54 +0000 (11:00 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Mon, 11 Aug 2025 15:24:15 +0000 (17:24 +0200)
Fix failures on big-endian architectures on tests cases
single_pixel_source_buffer, single_pixel_clip_rectangle,
well_known_colors and destination_pitch.

Fixes: 15bda1f8de5d ("drm/tests: Add calls to drm_fb_blit() on supported format conversion tests")
Signed-off-by: José Expósito <jose.exposito89@gmail.com>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20250630090054.353246-2-jose.exposito89@gmail.com
drivers/gpu/drm/tests/drm_format_helper_test.c

index 86829e1cb7f09296b0c156bfe7be2873576833e2..981dada8f3a8f16b1513a6f0eca26d73d4431cf3 100644 (file)
@@ -1040,6 +1040,7 @@ static void drm_test_fb_xrgb8888_to_xrgb2101010(struct kunit *test)
        memset(buf, 0, dst_size);
 
        drm_fb_xrgb8888_to_xrgb2101010(&dst, dst_pitch, &src, &fb, &params->clip, &fmtcnv_state);
+       buf = le32buf_to_cpu(test, (__force const __le32 *)buf, dst_size / sizeof(u32));
        KUNIT_EXPECT_MEMEQ(test, buf, result->expected, dst_size);
 }