use a uint64_t for this not a pointer

This commit is contained in:
Dave Airlie 2006-11-06 11:41:51 +11:00
parent 1e90b7ee8c
commit 5e55594061

View file

@ -74,7 +74,7 @@ typedef struct drm_nouveau_mem_alloc {
int flags;
int alignment;
uint64_t size; // in bytes
uint64_t __user *region_offset;
uint64_t region_offset;
}
drm_nouveau_mem_alloc_t;