summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-30 11:18:44 +0100
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-30 11:18:44 +0100
commit4b04c0cc45f7a89c757ce442e4f2742b9d3aa293 (patch)
tree9ed659be256727f6483b2705a3d255914075bb21
parent56563c22d658b6dcb7926fd41513618cd46c31a6 (diff)
Bugzilla Bug #8819
Build fixes for powerpc. Reported by Katerina Barone-Adesi
-rw-r--r--linux-core/drm_ttm.c2
-rw-r--r--linux-core/drm_vm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/linux-core/drm_ttm.c b/linux-core/drm_ttm.c
index 13bec48b..931972af 100644
--- a/linux-core/drm_ttm.c
+++ b/linux-core/drm_ttm.c
@@ -30,7 +30,7 @@
static void drm_ttm_ipi_handler(void *null)
{
- wbinvd();
+ flush_agp_cache();
}
static void drm_ttm_cache_flush(void)
diff --git a/linux-core/drm_vm.c b/linux-core/drm_vm.c
index fd6e89d8..6eb996ad 100644
--- a/linux-core/drm_vm.c
+++ b/linux-core/drm_vm.c
@@ -57,7 +57,7 @@ pgprot_t drm_io_prot(uint32_t map_type, struct vm_area_struct *vma)
}
#elif defined(__powerpc__)
pgprot_val(tmp) |= _PAGE_NO_CACHE;
- if (map->type == _DRM_REGISTERS)
+ if (map_type == _DRM_REGISTERS)
pgprot_val(tmp) |= _PAGE_GUARDED;
#endif
#if defined(__ia64__)