return dst;
 }
 
-static u32 *le32buf_to_cpu(struct kunit *test, const u32 *buf, size_t buf_size)
+static u32 *le32buf_to_cpu(struct kunit *test, const __le32 *buf, size_t buf_size)
 {
        u32 *dst = NULL;
        int n;
        const struct convert_xrgb8888_case *params = test->param_value;
        const struct convert_to_gray8_result *result = ¶ms->gray8_result;
        size_t dst_size;
-       __u8 *buf = NULL;
+       u8 *buf = NULL;
        __le32 *xrgb8888 = NULL;
        struct iosys_map dst, src;
 
        const struct convert_xrgb8888_case *params = test->param_value;
        const struct convert_to_rgb332_result *result = ¶ms->rgb332_result;
        size_t dst_size;
-       __u8 *buf = NULL;
+       u8 *buf = NULL;
        __le32 *xrgb8888 = NULL;
        struct iosys_map dst, src;
 
        const struct convert_xrgb8888_case *params = test->param_value;
        const struct convert_to_rgb888_result *result = ¶ms->rgb888_result;
        size_t dst_size;
-       __u8 *buf = NULL;
+       u8 *buf = NULL;
        __le32 *xrgb8888 = NULL;
        struct iosys_map dst, src;
 
        const struct convert_xrgb8888_case *params = test->param_value;
        const struct convert_to_xrgb2101010_result *result = ¶ms->xrgb2101010_result;
        size_t dst_size;
-       __u32 *buf = NULL;
+       u32 *buf = NULL;
        __le32 *xrgb8888 = NULL;
        struct iosys_map dst, src;
 
        iosys_map_set_vaddr(&src, xrgb8888);
 
        drm_fb_xrgb8888_to_xrgb2101010(&dst, &result->dst_pitch, &src, &fb, ¶ms->clip);
-       buf = le32buf_to_cpu(test, buf, dst_size / sizeof(u32));
+       buf = le32buf_to_cpu(test, (__force const __le32 *)buf, dst_size / sizeof(u32));
        KUNIT_EXPECT_EQ(test, memcmp(buf, result->expected, dst_size), 0);
 }