mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 10:59:18 -04: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:
committed by
Vincent Abriou
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;
|
||||
|
||||
Reference in New Issue
Block a user