Commit 0ee9f600 authored by Jernej Skrabec's avatar Jernej Skrabec Committed by Maxime Ripard

drm/sun4i: Fix DE2 YVU handling

Function sun8i_vi_layer_get_csc_mode() is supposed to return CSC mode
but due to inproper return type (bool instead of u32) it returns just 0
or 1. Colors are wrong for YVU formats because of that.

Fixes: daab3d0e ("drm/sun4i: de2: csc_mode in de2 format struct is mostly redundant")
Reported-by: default avatarRoman Stratiienko <r.stratiienko@gmail.com>
Signed-off-by: default avatarJernej Skrabec <jernej.skrabec@siol.net>
Tested-by: default avatarRoman Stratiienko <r.stratiienko@gmail.com>
Signed-off-by: default avatarMaxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20200901220305.6809-1-jernej.skrabec@siol.net
parent f7180022
...@@ -211,7 +211,7 @@ static int sun8i_vi_layer_update_coord(struct sun8i_mixer *mixer, int channel, ...@@ -211,7 +211,7 @@ static int sun8i_vi_layer_update_coord(struct sun8i_mixer *mixer, int channel,
return 0; return 0;
} }
static bool sun8i_vi_layer_get_csc_mode(const struct drm_format_info *format) static u32 sun8i_vi_layer_get_csc_mode(const struct drm_format_info *format)
{ {
if (!format->is_yuv) if (!format->is_yuv)
return SUN8I_CSC_MODE_OFF; return SUN8I_CSC_MODE_OFF;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment