xfree86: os-support: unexport xf86DeallocateGARTMemory
It's not used in any drivers, so no need to export it. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1456>
This commit is contained in:
parent
38030fce53
commit
3e4fc3e588
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include "xf86.h"
|
||||
#include "xf86Priv.h"
|
||||
#include "xf86_os_support.h"
|
||||
#include "xf86_OSlib.h"
|
||||
#include "xf86OSpriv.h"
|
||||
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#include <X11/X.h>
|
||||
#include "xf86.h"
|
||||
#include "xf86Priv.h"
|
||||
#include "xf86_os_support.h"
|
||||
#include "xf86_OSlib.h"
|
||||
#include "xf86OSpriv.h"
|
||||
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
|
||||
#include "xf86.h"
|
||||
#include "xf86Priv.h"
|
||||
#include "xf86_os_support.h"
|
||||
#include "xf86_OSlib.h"
|
||||
#include "xf86_OSproc.h"
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -151,7 +151,6 @@ extern _X_EXPORT Bool xf86AcquireGART(int screenNum);
|
|||
extern _X_EXPORT Bool xf86ReleaseGART(int screenNum);
|
||||
extern _X_EXPORT int xf86AllocateGARTMemory(int screenNum, unsigned long size,
|
||||
int type, unsigned long *physical);
|
||||
extern _X_EXPORT Bool xf86DeallocateGARTMemory(int screenNum, int key);
|
||||
extern _X_EXPORT Bool xf86BindGARTMemory(int screenNum, int key,
|
||||
unsigned long offset);
|
||||
extern _X_EXPORT Bool xf86UnbindGARTMemory(int screenNum, int key);
|
||||
|
|
|
@ -26,5 +26,6 @@ void xf86InitVidMem(void);
|
|||
|
||||
void xf86OSRingBell(int volume, int pitch, int duration);
|
||||
void xf86OSInputThreadInit(void);
|
||||
Bool xf86DeallocateGARTMemory(int screenNum, int key);
|
||||
|
||||
#endif /* _XSERVER_XF86_OS_SUPPORT */
|
||||
|
|
Loading…
Reference in New Issue