mirror of
https://github.com/adulau/aha.git
synced 2025-01-02 14:13:18 +00:00
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:
parent
cdec2f82b1
commit
507c0185a7
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue