Add xf86DeallocateGARTMemory stub so that Xorg can be built on Solaris

again.
This commit is contained in:
Alan Coopersmith 2005-07-24 16:24:17 +00:00
parent 7c1148c0fb
commit e7502158d6

View File

@ -235,6 +235,12 @@ xf86AllocateGARTMemory(int screenNum, unsigned long size, int type,
return alloc.agpa_key; return alloc.agpa_key;
} }
Bool
xf86DeallocateGARTMemory(int screenNum, int key)
{
return FALSE;
}
/* Bind GART memory with "key" at "offset" */ /* Bind GART memory with "key" at "offset" */
Bool Bool
xf86BindGARTMemory(int screenNum, int key, unsigned long offset) xf86BindGARTMemory(int screenNum, int key, unsigned long offset)