diff options
author | Keith Whitwell <[email protected]> | 2008-09-20 07:32:30 -0700 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-21 09:45:00 -0700 |
commit | 5a46e176715b0eae7b8a715e8aec42f5a27214fc (patch) | |
tree | 6f8c89c2744f6092a371bbdcdf0a1b9f68124571 /src/mesa/drivers/dri/r128/r128_ioctl.c | |
parent | 3474e9de924d92a941b4ea33ecc694f5fad2651f (diff) |
mesa: standardize on C99's uint*_t instead of u_int*_t
Diffstat (limited to 'src/mesa/drivers/dri/r128/r128_ioctl.c')
-rw-r--r-- | src/mesa/drivers/dri/r128/r128_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r128/r128_ioctl.c b/src/mesa/drivers/dri/r128/r128_ioctl.c index a1bda75dcdd..9aa22179fc4 100644 --- a/src/mesa/drivers/dri/r128/r128_ioctl.c +++ b/src/mesa/drivers/dri/r128/r128_ioctl.c @@ -231,7 +231,7 @@ static int r128WaitForFrameCompletion( r128ContextPtr rmesa ) int wait = 0; while ( 1 ) { - u_int32_t frame = read_MMIO_LE32( R128MMIO, R128_LAST_FRAME_REG ); + uint32_t frame = read_MMIO_LE32( R128MMIO, R128_LAST_FRAME_REG ); if ( rmesa->sarea->last_frame - frame <= R128_MAX_OUTSTANDING ) { break; |