mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-08 22:08:44 +02:00
ati: fix rs690 igp gart by allocating the page table in 32-bit memory
This commit is contained in:
parent
5b1d9263d3
commit
afa803ee40
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue