diff options
author | Eric Anholt <eric@anholt.net> | 2006-11-17 11:48:53 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2006-11-17 14:50:22 -0800 |
commit | 15ff17c756e42f392306820e3f7ffbdcc56b9892 (patch) | |
tree | 755486d8c1aac8decb044e432a7ca3699c48d795 /src/i810_driver.c | |
parent | 9cc2f3313d77487dea372e6ab32d6d9c06617ae3 (diff) | |
parent | 816fc1a76a5ac738e41b172ba8f43137c1521328 (diff) |
Merge branch 'modesetting' into crestline
This works for analog, but SDVO output appears to not work yet.
Conflicts:
src/i830_driver.c
Diffstat (limited to 'src/i810_driver.c')
-rw-r--r-- | src/i810_driver.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c index a31e4cf8..63a24d7c 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -347,6 +347,14 @@ const char *I810shadowSymbols[] = { "shadowInit", "shadowSetup", "shadowAdd", + "shadowRemove", + "shadowUpdateRotatePacked", + NULL +}; + +const char *I810i2cSymbols[] = { + "xf86CreateI2CBusRec", + "xf86I2CBusInit", NULL }; @@ -486,11 +494,11 @@ I810AvailableOptions(int chipid, int busid) #ifndef I830_ONLY const OptionInfoRec *pOptions; - if ((pOptions = I830BIOSAvailableOptions(chipid, busid))) + if ((pOptions = I830AvailableOptions(chipid, busid))) return pOptions; return I810Options; #else - return I830BIOSAvailableOptions(chipid, busid); + return I830AvailableOptions(chipid, busid); #endif } |