[PATCH xf86-video-i740] Fix loading the driver without XAA
Matthieu Herrb
matthieu.herrb at laas.fr
Thu Jun 13 14:43:57 PDT 2013
Signed-off-by: Matthieu Herrb <matthieu.herrb at laas.fr>
---
src/i740_dga.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git src/i740_dga.c src/i740_dga.c
index 532d614..c16cce3 100644
--- src/i740_dga.c
+++ src/i740_dga.c
@@ -41,10 +41,10 @@
static Bool I740_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **, int *, int *, int *);
static Bool I740_SetMode(ScrnInfoPtr, DGAModePtr);
-static void I740_Sync(ScrnInfoPtr);
static int I740_GetViewport(ScrnInfoPtr);
static void I740_SetViewport(ScrnInfoPtr, int, int, int);
#ifdef HAVE_XAA_H
+static void I740_Sync(ScrnInfoPtr);
static void I740_FillRect(ScrnInfoPtr, int, int, int, int, unsigned long);
static void I740_BlitRect(ScrnInfoPtr, int, int, int, int, int, int);
#if 0
@@ -57,8 +57,8 @@ static DGAFunctionRec I740DGAFuncs = {
I740_SetMode,
I740_SetViewport,
I740_GetViewport,
- I740_Sync,
#ifdef HAVE_XAA_H
+ I740_Sync,
I740_FillRect,
I740_BlitRect,
#if 0
@@ -67,7 +67,7 @@ static DGAFunctionRec I740DGAFuncs = {
NULL
#endif
#else
- NULL, NULL, NULL
+ NULL, NULL, NULL, NULL
#endif
};
--
1.8.3
More information about the xorg-devel
mailing list