diff options
| author | Peter Hutterer <peter@cs.unisa.edu.au> | 2007-05-03 10:05:58 +0930 | 
|---|---|---|
| committer | Peter Hutterer <peter@cs.unisa.edu.au> | 2007-05-03 10:05:58 +0930 | 
| commit | cb22bdbe678a9948eda75d464d6701a729664ef0 (patch) | |
| tree | 0993b1cef7a4e1ead0ab6db773bd6729398938db | |
| parent | c03d9a7217f9895feed8cfed3ede4752faf6187c (diff) | |
Add selected RamDac functions to xfree86LookupTab.
Adding those makes drivers for s3 and tga work again.
| -rw-r--r-- | hw/xfree86/loader/xf86sym.c | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/hw/xfree86/loader/xf86sym.c b/hw/xfree86/loader/xf86sym.c index 5175f01f9..ca32d6eb8 100644 --- a/hw/xfree86/loader/xf86sym.c +++ b/hw/xfree86/loader/xf86sym.c @@ -97,6 +97,9 @@  #include "xf86DDC.h"  #include "edid.h" +#include "xf86RamDac.h" +#include "BT.h" +  #ifndef HAS_GLIBC_SIGSETJMP  #if defined(setjmp) && defined(__GNU_LIBRARY__) && \      (!defined(__GLIBC__) || (__GLIBC__ < 2) || \ @@ -1255,4 +1258,14 @@ _X_HIDDEN void *xfree86LookupTab[] = {      SYMFUNC(xf86I2CWriteRead)      SYMFUNC(xf86I2CWriteVec)      SYMFUNC(xf86I2CWriteWord) + +    /* ramdac */ +    SYMFUNC(RamDacInit) +    SYMFUNC(RamDacCreateInfoRec) +    SYMFUNC(RamDacDestroyInfoRec) +    SYMFUNC(RamDacHelperCreateInfoRec) +    SYMFUNC(RamDacFreeRec) +    SYMFUNC(RamDacHandleColormaps) +    SYMFUNC(RamDacGetHWIndex) +    SYMFUNC(BTramdacProbe)  }; | 
