summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--linux-core/ati_pcigart.c2
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;