diff options
author | Dave Airlie <airlied@redhat.com> | 2008-03-16 15:01:27 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2008-03-16 15:02:53 +1000 |
commit | afa803ee40c1d06066f58a34761be58ba03badb5 (patch) | |
tree | d41a195b06cbe01aead9de20f52069d543cca2ed /linux-core | |
parent | 5b1d9263d3c108be7360ccd3aeed4cc3a0bf1ada (diff) |
ati: fix rs690 igp gart by allocating the page table in 32-bit memory
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/ati_pcigart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/ati_pcigart.c b/linux-core/ati_pcigart.c index 5a424200..74f91bc4 100644 --- a/linux-core/ati_pcigart.c +++ b/linux-core/ati_pcigart.c @@ -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; |