diff options
| author | 2016-12-20 10:54:38 -0500 | |
|---|---|---|
| committer | 2017-09-26 17:06:44 -0400 | |
| commit | fafba6de3a142f46c78b937ae9783d2d0cab044d (patch) | |
| tree | 213931ac9ffee60ca1da3baf6d020f796bbc2180 | |
| parent | drm/amd/display: Add dcc param to surface (diff) | |
| download | wireguard-linux-fafba6de3a142f46c78b937ae9783d2d0cab044d.tar.xz wireguard-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>
| -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 { |
