diff options
author | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2005-05-20 15:24:02 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2005-05-20 15:24:02 +0000 |
commit | 89ec4ac201c09329d5d732323bdce6250b8592fe (patch) | |
tree | 07fe847994c3ca21d927702c514ab558fd3edeff /src/i810_driver.c | |
parent | df0964ea8f92c6b278dd87b95380dbc3ada625e5 (diff) |
Bugzilla #3292: https://bugs.freedesktop.org/show_bug.cgi?id=3292XORG-6_8_99_8
Add shadowFB support to the Intel driver (Dima Dorfman)
Diffstat (limited to 'src/i810_driver.c')
-rw-r--r-- | src/i810_driver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c index fe4ed5ec..98c26581 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -309,7 +309,7 @@ const char *I810driSymbols[] = { #ifdef XF86DRI -static const char *driShadowFBSymbols[] = { +const char *I810shadowFBSymbols[] = { "ShadowFBInit", NULL }; @@ -392,7 +392,7 @@ i810Setup(pointer module, pointer opts, int *errmaj, int *errmin) I810drmSymbols, I810driSymbols, I810shadowSymbols, - driShadowFBSymbols, + I810shadowFBSymbols, #endif I810vbeSymbols, vbeOptionalSymbols, I810ddcSymbols, I810int10Symbols, NULL); @@ -1089,7 +1089,7 @@ I810PreInit(ScrnInfoPtr pScrn, int flags) "Couldn't load shadowfb module:\n"); } else { - xf86LoaderReqSymLists(driShadowFBSymbols, NULL); + xf86LoaderReqSymLists(I810shadowFBSymbols, NULL); } } |