summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2010-07-22 13:53:55 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2010-07-22 13:56:53 +1000
commit0d2886ac1a2c39d09b68101912b5f3542bba2257 (patch)
tree0452bf27c74e6e602033b4fcd0f75ba7db581b33
parentd18e24396fde0e3ad81ad3405b54b69914c47c00 (diff)
drm/ttm: really fix build on architectures without AGP
After commit 1e8655f87333def92bb8215b423adc65403b08a5 ("drm/ttm: Fix build on architectures without AGP") was merged, linux-next got this build failure for a powerpc allyesconfig build: drivers/gpu/drm/ttm/ttm_page_alloc.c: In function 'set_pages_a rray_wb': drivers/gpu/drm/ttm/ttm_page_alloc.c:227: error: implicit declaration of function 'unmap_page_from_agp' drivers/gpu/drm/ttm/ttm_page_alloc.c: In function 'set_pages_array_wc': drivers/gpu/drm/ttm/ttm_page_alloc.c:238: error: implicit declaration of function 'map_page_into_agp' Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--drivers/gpu/drm/ttm/ttm_page_alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index d233c65f3f7f..590f0c2d181c 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -40,12 +40,12 @@
#include <linux/slab.h>
#include <asm/atomic.h>
-#ifdef TTM_HAS_AGP
-#include <asm/agp.h>
-#endif
#include "ttm/ttm_bo_driver.h"
#include "ttm/ttm_page_alloc.h"
+#ifdef TTM_HAS_AGP
+#include <asm/agp.h>
+#endif
#define NUM_PAGES_TO_ALLOC (PAGE_SIZE/sizeof(struct page *))