From: "Kory Maincent (TI)" <[email protected]> cpu_to_be32() returns a __be32 big-endian value, but the compound literals passed to tilcdc_panel_update_prop() were typed as u32. This causes a sparse type mismatch warning. Fix it by using __be32 as the compound literal type to match the return type of cpu_to_be32().
Reported-by: kernel test robot <[email protected]> Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ Fixes: 0ff223d991477 ("drm/tilcdc: Convert legacy panel binding via DT overlay at boot time") Signed-off-by: Kory Maincent (TI) <[email protected]> --- drivers/gpu/drm/tilcdc/tilcdc_panel_legacy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/tilcdc/tilcdc_panel_legacy.c b/drivers/gpu/drm/tilcdc/tilcdc_panel_legacy.c index 37a69b3cf04b2..2e7b3e87fea18 100644 --- a/drivers/gpu/drm/tilcdc/tilcdc_panel_legacy.c +++ b/drivers/gpu/drm/tilcdc/tilcdc_panel_legacy.c @@ -105,14 +105,14 @@ static int __init tilcdc_panel_copy_props(struct device_node *old_panel, if (!invert_pxl_clk) { ret = tilcdc_panel_update_prop(&ocs, new_timing, "pixelclk-active", - &(u32){cpu_to_be32(1)}, sizeof(u32)); + &(__be32){cpu_to_be32(1)}, sizeof(__be32)); if (ret) goto destroy_ocs; } if (!sync_edge) { ret = tilcdc_panel_update_prop(&ocs, new_timing, "syncclk-active", - &(u32){cpu_to_be32(1)}, sizeof(u32)); + &(__be32){cpu_to_be32(1)}, sizeof(__be32)); if (ret) goto destroy_ocs; } -- 2.43.0
