Skip to content
Snippets Groups Projects
Commit 7d309529 authored by Michel Dänzer's avatar Michel Dänzer Committed by Dave Airlie
Browse files

drm/radeon: Simplify cursor x/yorigin calculation.

parent b356fe0a
No related branches found
No related tags found
No related merge requests found
...@@ -209,13 +209,9 @@ int radeon_crtc_cursor_move(struct drm_crtc *crtc, ...@@ -209,13 +209,9 @@ int radeon_crtc_cursor_move(struct drm_crtc *crtc,
int w = radeon_crtc->cursor_width; int w = radeon_crtc->cursor_width;
if (x < 0) if (x < 0)
xorigin = -x; xorigin = min(-x, CURSOR_WIDTH - 1);
if (y < 0) if (y < 0)
yorigin = -y; yorigin = min(-y, CURSOR_HEIGHT - 1);
if (xorigin >= CURSOR_WIDTH)
xorigin = CURSOR_WIDTH - 1;
if (yorigin >= CURSOR_HEIGHT)
yorigin = CURSOR_HEIGHT - 1;
if (ASIC_IS_AVIVO(rdev)) { if (ASIC_IS_AVIVO(rdev)) {
int i = 0; int i = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment