diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-07 15:31:47 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-07 15:31:47 +0100 |
commit | 1788b16eb26580624dd3df96ed84f68d40e78ed7 (patch) | |
tree | bf3cf0339e959575d416039d60fbf7e04f353fe9 | |
parent | d9bc36ae03e3c56ab165d24fe4bdc6688fd62b6d (diff) |
i915: Fix typo from previous commit.
A trivial change, I thought, having tested it before rebasing, unworthy
even of a perfunctory compile test. How wrong I was.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/i830_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_video.c b/src/i830_video.c index eea967fe..86f3f774 100644 --- a/src/i830_video.c +++ b/src/i830_video.c @@ -367,7 +367,7 @@ void I830InitVideo(ScreenPtr screen) /* Set up textured video if we can do it at this depth and we are on * supported hardware. */ - if (scrn->bitsPerPixel >= 16 && (IS_I9XX(intel) || IS_I965G(intel))) + if (scrn->bitsPerPixel >= 16 && (IS_I9XX(intel) || IS_I965G(intel))) { texturedAdaptor = I830SetupImageVideoTextured(screen); if (texturedAdaptor != NULL) { xf86DrvMsg(scrn->scrnIndex, X_INFO, |