Skip to content

Commit 832b77f

Browse files
JoseExpositogregkh
authored andcommitted
drm/tests: Fix endian warning
[ Upstream commit d28b9d2 ] When compiling with sparse enabled, this warning is thrown: warning: incorrect type in argument 2 (different base types) expected restricted __le32 const [usertype] *buf got unsigned int [usertype] *[assigned] buf Add a cast to fix it. Fixes: 4531143 ("drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_xrgb2101010()") 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-1-jose.exposito89@gmail.com Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 933563a commit 832b77f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/tests/drm_format_helper_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1071,7 +1071,7 @@ static void drm_test_fb_xrgb8888_to_xrgb2101010(struct kunit *test)
10711071
NULL : &result->dst_pitch;
10721072

10731073
drm_fb_xrgb8888_to_xrgb2101010(&dst, dst_pitch, &src, &fb, &params->clip, &fmtcnv_state);
1074-
buf = le32buf_to_cpu(test, buf, dst_size / sizeof(u32));
1074+
buf = le32buf_to_cpu(test, (__force const __le32 *)buf, dst_size / sizeof(u32));
10751075
KUNIT_EXPECT_MEMEQ(test, buf, result->expected, dst_size);
10761076

10771077
buf = dst.vaddr; /* restore original value of buf */

0 commit comments

Comments
 (0)