|
@@ -74,7 +74,7 @@ static int sis_fb_init(struct drm_device *dev, void *data, struct drm_file *file
|
|
|
dev_priv->vram_offset = fb->offset;
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
- DRM_DEBUG("offset = %u, size = %u\n", fb->offset, fb->size);
|
|
|
+ DRM_DEBUG("offset = %lu, size = %lu\n", fb->offset, fb->size);
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
@@ -161,7 +161,7 @@ fail_alloc:
|
|
|
mem->size = 0;
|
|
|
mem->free = 0;
|
|
|
|
|
|
- DRM_DEBUG("alloc %d, size = %d, offset = %d\n", pool, mem->size,
|
|
|
+ DRM_DEBUG("alloc %d, size = %ld, offset = %ld\n", pool, mem->size,
|
|
|
mem->offset);
|
|
|
|
|
|
return retval;
|
|
@@ -215,7 +215,7 @@ static int sis_ioctl_agp_init(struct drm_device *dev, void *data,
|
|
|
dev_priv->agp_offset = agp->offset;
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
- DRM_DEBUG("offset = %u, size = %u\n", agp->offset, agp->size);
|
|
|
+ DRM_DEBUG("offset = %lu, size = %lu\n", agp->offset, agp->size);
|
|
|
return 0;
|
|
|
}
|
|
|
|