aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/drm_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_info.c b/drivers/gpu/drm/drm_info.c
index fc98952b9033..1b699768ccfb 100644
--- a/drivers/gpu/drm/drm_info.c
+++ b/drivers/gpu/drm/drm_info.c
@@ -286,9 +286,9 @@ int drm_vma_info(struct seq_file *m, void *data)
286#endif 286#endif
287 287
288 mutex_lock(&dev->struct_mutex); 288 mutex_lock(&dev->struct_mutex);
289 seq_printf(m, "vma use count: %d, high_memory = %p, 0x%08lx\n", 289 seq_printf(m, "vma use count: %d, high_memory = %p, 0x%08llx\n",
290 atomic_read(&dev->vma_count), 290 atomic_read(&dev->vma_count),
291 high_memory, virt_to_phys(high_memory)); 291 high_memory, (u64)virt_to_phys(high_memory));
292 292
293 list_for_each_entry(pt, &dev->vmalist, head) { 293 list_for_each_entry(pt, &dev->vmalist, head) {
294 vma = pt->vma; 294 vma = pt->vma;