diff options
author | Alan Hourihane <[email protected]> | 2004-12-14 22:37:46 +0000 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2004-12-14 22:37:46 +0000 |
commit | 968cbf94d90755a6bfb016ac501aca4d9006cbc8 (patch) | |
tree | c933696148fb83e99c45f4c73eab130e58a884ff /src/mesa/drivers/dri/savage/savageioctl.h | |
parent | fc84bec654cced24883696bf97db2b52c86bc721 (diff) |
uint*t -> u_int*t
Diffstat (limited to 'src/mesa/drivers/dri/savage/savageioctl.h')
-rw-r--r-- | src/mesa/drivers/dri/savage/savageioctl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/savage/savageioctl.h b/src/mesa/drivers/dri/savage/savageioctl.h index 92f42950e13..87901b5a294 100644 --- a/src/mesa/drivers/dri/savage/savageioctl.h +++ b/src/mesa/drivers/dri/savage/savageioctl.h @@ -73,9 +73,9 @@ int savageFreeDMABuffer(savageContextPtr, drm_savage_alloc_cont_mem_t*); } while (0) static __inline -uint32_t *savageAllocDmaLow( savageContextPtr imesa, GLuint bytes ) +u_int32_t *savageAllocDmaLow( savageContextPtr imesa, GLuint bytes ) { - uint32_t *head; + u_int32_t *head; if (!imesa->vertex_dma_buffer) { LOCK_HARDWARE(imesa); @@ -89,7 +89,7 @@ uint32_t *savageAllocDmaLow( savageContextPtr imesa, GLuint bytes ) UNLOCK_HARDWARE(imesa); } - head = (uint32_t *)((uint8_t *)imesa->vertex_dma_buffer->address + + head = (u_int32_t *)((uint8_t *)imesa->vertex_dma_buffer->address + imesa->vertex_dma_buffer->used); imesa->vertex_dma_buffer->used += bytes; |