summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-24 16:24:17 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-24 16:24:17 +0000
commite7502158d6922a149d0aaf1de209f0b58fa444bf (patch)
tree2008695c0fac953d7521b6e1367bd3a6c45a9c62
parent7c1148c0fbc00716bb7ec621a1b968b4127cbb00 (diff)
Add xf86DeallocateGARTMemory stub so that Xorg can be built on SolarisXORG-6_8_99_16
again.
-rw-r--r--hw/xfree86/os-support/solaris/sun_agp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/xfree86/os-support/solaris/sun_agp.c b/hw/xfree86/os-support/solaris/sun_agp.c
index 32c4f47bc..a85e9ecf2 100644
--- a/hw/xfree86/os-support/solaris/sun_agp.c
+++ b/hw/xfree86/os-support/solaris/sun_agp.c
@@ -235,6 +235,12 @@ xf86AllocateGARTMemory(int screenNum, unsigned long size, int type,
return alloc.agpa_key;
}
+Bool
+xf86DeallocateGARTMemory(int screenNum, int key)
+{
+ return FALSE;
+}
+
/* Bind GART memory with "key" at "offset" */
Bool
xf86BindGARTMemory(int screenNum, int key, unsigned long offset)