drm: drm_rmdraw: Declare id and idx as signed so testing for < 0 works as intended.

Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
=?utf-8?q?Felix_K=C3=BChling?= 2006-10-24 23:28:23 +10:00 committed by airlied
parent cdec2f82b1
commit 507c0185a7
1 changed files with 2 additions and 1 deletions

View File

@ -132,7 +132,8 @@ int drm_rmdraw(DRM_IOCTL_ARGS)
{
DRM_DEVICE;
drm_draw_t draw;
unsigned int id, idx, shift;
int id, idx;
unsigned int shift;
unsigned long irqflags;
u32 *bitfield = dev->drw_bitfield;
unsigned int bitfield_length = dev->drw_bitfield_length;