diff options
author | Thomas Hellstrom <thomas@tungstengraphics.com> | 2006-03-24 16:19:49 +0000 |
---|---|---|
committer | Thomas Hellstrom <thomas@tungstengraphics.com> | 2006-03-24 16:19:49 +0000 |
commit | d140055f5be6185f634f7d13683c36ed698eb89a (patch) | |
tree | 223c4eff4a762e7bd3255ede19d2552de99b0582 | |
parent | ee365fe0f1ba3c59176fcea7c7e360d776ee8c4b (diff) |
Fix typo.i810_texman_0_1_20060330
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/i830_driver.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-03-24 Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> + + * src/i830_driver.c: (I830BIOSCloseScreen): + Fix typo. + 2006-03-22 Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> * src/i810_driver.c: diff --git a/src/i830_driver.c b/src/i830_driver.c index 840471c5..49a5f055 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -5578,7 +5578,8 @@ I830BIOSCloseScreen(int scrnIndex, ScreenPtr pScreen) pI830->closing = TRUE; #ifdef XF86DRI if (pI830->directRenderingOpen) { - drmMMTakedown(pI830->drmSubFD); + I830DrmMMTakedown(pI830->drmSubFD); + pI830->directRenderingOpen = FALSE; I830DRICloseScreen(pScreen); } |