diff options
Diffstat (limited to 'drivers/gpu/drm/radeon/r300_cmdbuf.c')
| -rw-r--r-- | drivers/gpu/drm/radeon/r300_cmdbuf.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/radeon/r300_cmdbuf.c b/drivers/gpu/drm/radeon/r300_cmdbuf.c index 60170ea5e3a..84b1d5367a1 100644 --- a/drivers/gpu/drm/radeon/r300_cmdbuf.c +++ b/drivers/gpu/drm/radeon/r300_cmdbuf.c @@ -75,7 +75,7 @@ static int r300_emit_cliprects(drm_radeon_private_t *dev_priv,  		OUT_RING(CP_PACKET0(R300_RE_CLIPRECT_TL_0, nr * 2 - 1));  		for (i = 0; i < nr; ++i) { -			if (DRM_COPY_FROM_USER +			if (copy_from_user  			    (&box, &cmdbuf->boxes[n + i], sizeof(box))) {  				DRM_ERROR("copy cliprect faulted\n");  				return -EFAULT; @@ -928,12 +928,12 @@ static int r300_scratch(drm_radeon_private_t *dev_priv,  		buf_idx = drm_buffer_pointer_to_dword(cmdbuf->buffer, 0);  		*buf_idx *= 2; /* 8 bytes per buf */ -		if (DRM_COPY_TO_USER(ref_age_base + *buf_idx, +		if (copy_to_user(ref_age_base + *buf_idx,  				&dev_priv->scratch_ages[header.scratch.reg],  				sizeof(u32)))  			return -EINVAL; -		if (DRM_COPY_FROM_USER(&h_pending, +		if (copy_from_user(&h_pending,  				ref_age_base + *buf_idx + 1,  				sizeof(u32)))  			return -EINVAL; @@ -943,7 +943,7 @@ static int r300_scratch(drm_radeon_private_t *dev_priv,  		h_pending--; -		if (DRM_COPY_TO_USER(ref_age_base + *buf_idx + 1, +		if (copy_to_user(ref_age_base + *buf_idx + 1,  					&h_pending,  					sizeof(u32)))  			return -EINVAL;  | 
