mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 14:06:44 +07:00
drm/sti: fix cursor coordinates
fix x/y typo while setting cursor coordinates Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com> Reviewed-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> Reviewed-by: Vincent Abriou <vincent.abriou@st.com>
This commit is contained in:
parent
652353e6e5
commit
b83a8b5386
@ -205,7 +205,7 @@ static void sti_cursor_atomic_update(struct drm_plane *drm_plane,
|
||||
writel(cursor->height << 16 | cursor->width, cursor->regs + CUR_SIZE);
|
||||
|
||||
y = sti_vtg_get_line_number(*mode, dst_y);
|
||||
x = sti_vtg_get_pixel_number(*mode, dst_y);
|
||||
x = sti_vtg_get_pixel_number(*mode, dst_x);
|
||||
writel((y << 16) | x, cursor->regs + CUR_VPO);
|
||||
|
||||
plane->status = STI_PLANE_UPDATED;
|
||||
|
Loading…
Reference in New Issue
Block a user