From: Dave Airlie Date: Thu, 12 Mar 2009 23:35:32 +0000 (+1000) Subject: drm/radeon: r600 ptes are 64-bit, cleanup cleanup function. X-Git-Tag: firefly_0821_release~15188^2~10 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=06f0a488c1b642d3cd7769da66600e5148c3fad8;p=firefly-linux-kernel-4.4.55.git drm/radeon: r600 ptes are 64-bit, cleanup cleanup function. Signed-off-by: Dave Airlie --- diff --git a/drivers/gpu/drm/radeon/r600_cp.c b/drivers/gpu/drm/radeon/r600_cp.c index 490f35396cbb..76eb0d5ab570 100644 --- a/drivers/gpu/drm/radeon/r600_cp.c +++ b/drivers/gpu/drm/radeon/r600_cp.c @@ -125,7 +125,7 @@ void r600_page_table_cleanup(struct drm_device *dev, struct drm_ati_pcigart_info return; if (gart_info->bus_addr) { - max_pages = (gart_info->table_size / sizeof(u32)); + max_pages = (gart_info->table_size / sizeof(u64)); pages = (entry->pages <= max_pages) ? entry->pages : max_pages;