summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2006-03-02 10:49:31 -0800
committerEric Anholt <anholt@leguin.anholt.net>2006-04-06 15:56:33 -0700
commit980fb78e759b752a6cae3c87d188c50ab131ba80 (patch)
tree473bc587eb8ae57f7c3665fbe56b8f98a180d9fe
parent2b842c7ee3f9c33cabf16561f11bf1c3a2502d4a (diff)
Correct capitalization of i830SetMode.
-rw-r--r--src/i830_driver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c
index 1e556562..699d4629 100644
--- a/src/i830_driver.c
+++ b/src/i830_driver.c
@@ -5272,7 +5272,7 @@ I830BIOSEnterVT(int scrnIndex, int flags)
if (!pI830->starting)
I830DetectMonitorChange(pScrn);
- if (!I830SetMode(pScrn, pScrn->currentMode))
+ if (!i830SetMode(pScrn, pScrn->currentMode))
return FALSE;
#ifdef I830_XV
@@ -5342,7 +5342,7 @@ I830BIOSSwitchMode(int scrnIndex, DisplayModePtr mode, int flags)
* are rotating, we don't need to call the mode setup again.
*/
if (pI830->currentMode != mode) {
- if (!I830SetMode(pScrn, mode))
+ if (!i830SetMode(pScrn, mode))
ret = FALSE;
}
@@ -5363,7 +5363,7 @@ I830BIOSSwitchMode(int scrnIndex, DisplayModePtr mode, int flags)
* video mode here, as we'll have already re-instated the original rotation.
*/
if (!ret) {
- if (!I830SetMode(pScrn, pI830->currentMode)) {
+ if (!i830SetMode(pScrn, pI830->currentMode)) {
xf86DrvMsg(scrnIndex, X_INFO,
"Failed to restore previous mode (SwitchMode)\n");
}