ati: fix rs690 igp gart by allocating the page table in 32-bit memory

main
Dave Airlie 2008-03-16 15:01:27 +10:00 committed by Dave Airlie
parent 5b1d9263d3
commit afa803ee40
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ static void *drm_ati_alloc_pcigart_table(int order)
DRM_DEBUG("%d order\n", order);
address = __get_free_pages(GFP_KERNEL | __GFP_COMP,
address = __get_free_pages(GFP_KERNEL | __GFP_COMP | __GFP_DMA32,
order);
if (address == 0UL) {
return NULL;