diff options
author | Tony Cheng | 2016-12-20 16:54:38 +0100 |
---|---|---|
committer | Alex Deucher | 2017-09-26 23:06:44 +0200 |
commit | fafba6de3a142f46c78b937ae9783d2d0cab044d (patch) | |
tree | 213931ac9ffee60ca1da3baf6d020f796bbc2180 /drivers/gpu/drm/amd/display | |
parent | drm/amd/display: Add dcc param to surface (diff) | |
download | kernel-qcow2-linux-fafba6de3a142f46c78b937ae9783d2d0cab044d.tar.gz kernel-qcow2-linux-fafba6de3a142f46c78b937ae9783d2d0cab044d.tar.xz kernel-qcow2-linux-fafba6de3a142f46c78b937ae9783d2d0cab044d.zip |
drm/amd/display: track cursor width in ipp
Signed-off-by: Tony Cheng <tony.cheng@amd.com>
Reviewed-by: Yongqiang Sun <yongqiang.sun@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h b/drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h index 81de97568d11..e9ed167c9e41 100644 --- a/drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h +++ b/drivers/gpu/drm/amd/display/dc/inc/hw/ipp.h @@ -35,8 +35,10 @@ /* IPP RELATED */ struct input_pixel_processor { struct dc_context *ctx; - uint32_t inst; + unsigned int inst; const struct ipp_funcs *funcs; + + unsigned int cusor_width; }; enum ipp_prescale_mode { |