fb: unexport fbAllocatePrivates()
Only used inside fb/, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
4a94e4d01e
commit
50c2c59dc9
6
fb/fb.h
6
fb/fb.h
|
@ -437,12 +437,6 @@ typedef struct {
|
||||||
*/
|
*/
|
||||||
#define FbEvenTile(w) ((w) <= FB_UNIT && FbPowerOfTwo(w))
|
#define FbEvenTile(w) ((w) <= FB_UNIT && FbPowerOfTwo(w))
|
||||||
|
|
||||||
/*
|
|
||||||
* fballpriv.c
|
|
||||||
*/
|
|
||||||
extern _X_EXPORT Bool
|
|
||||||
fbAllocatePrivates(ScreenPtr pScreen);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* fbarc.c
|
* fbarc.c
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
#ifndef XORG_FB_PRIV_H
|
#ifndef XORG_FB_PRIV_H
|
||||||
#define XORG_FB_PRIV_H
|
#define XORG_FB_PRIV_H
|
||||||
|
|
||||||
|
#include <X11/Xdefs.h>
|
||||||
|
|
||||||
|
#include "include/scrnintstr.h"
|
||||||
#include "fb/fb.h"
|
#include "fb/fb.h"
|
||||||
|
|
||||||
#ifdef FB_DEBUG
|
#ifdef FB_DEBUG
|
||||||
|
@ -18,4 +21,6 @@ static inline void fbValidateDrawable(DrawablePtr d) {}
|
||||||
|
|
||||||
#endif /* FB_DEBUG */
|
#endif /* FB_DEBUG */
|
||||||
|
|
||||||
|
Bool fbAllocatePrivates(ScreenPtr pScreen);
|
||||||
|
|
||||||
#endif /* XORG_FB_PRIV_H */
|
#endif /* XORG_FB_PRIV_H */
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
|
|
||||||
#include "fb.h"
|
#include "fb/fb_priv.h"
|
||||||
|
|
||||||
static DevPrivateKeyRec fbScreenPrivateKeyRec;
|
static DevPrivateKeyRec fbScreenPrivateKeyRec;
|
||||||
DevPrivateKey
|
DevPrivateKey
|
||||||
|
|
|
@ -22,9 +22,10 @@
|
||||||
|
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
|
|
||||||
|
#include "fb/fb_priv.h"
|
||||||
#include "os/osdep.h"
|
#include "os/osdep.h"
|
||||||
|
|
||||||
#include "fb.h"
|
#undef CreateWindow
|
||||||
|
|
||||||
Bool
|
Bool
|
||||||
fbCloseScreen(ScreenPtr pScreen)
|
fbCloseScreen(ScreenPtr pScreen)
|
||||||
|
|
Loading…
Reference in New Issue