Skip to content

Commit

Permalink
drm/radeon: Fix printf type warning in 64bit system.
Browse files Browse the repository at this point in the history
Type of iterator was promoted to unsigned long in 64bit systems.

*header is small structure so it is alwas safe to cast return value
of sizeof operator to int.

Signed-off-by: Pauli Nieminen <suokkos@gmail.com>
  • Loading branch information
Pauli Nieminen authored and Dave Airlie committed Mar 1, 2010
1 parent 0de1a57 commit 55a5cb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/radeon/r300_cmdbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ static __inline__ int r300_emit_packet3(drm_radeon_private_t *dev_priv,
default:
DRM_ERROR("bad packet3 type %i at byte %d\n",
header.packet3.packet,
cmdbuf->buffer->iterator - sizeof(header));
cmdbuf->buffer->iterator - (int)sizeof(header));
return -EINVAL;
}

Expand Down Expand Up @@ -1153,7 +1153,7 @@ int r300_do_cp_cmdbuf(struct drm_device *dev,
default:
DRM_ERROR("bad cmd_type %i at byte %d\n",
header->header.cmd_type,
cmdbuf->buffer->iterator - sizeof(*header));
cmdbuf->buffer->iterator - (int)sizeof(*header));
ret = -EINVAL;
goto cleanup;
}
Expand Down

0 comments on commit 55a5cb5

Please sign in to comment.