summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2010-06-07 15:31:47 +0100
committerOwain G. Ainsworth <oga@openbsd.org>2010-06-07 21:14:17 +0100
commit8e57056513f147d22d3f99b84284f38f2b1dec32 (patch)
treedeff141528b24ca17b022917ba45754a31eb41e1
parente840c41aa99715f22efc84504788e45165f36af1 (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> (cherry picked from commit 1788b16eb26580624dd3df96ed84f68d40e78ed7) Signed-off-by: Owain G. Ainsworth <oga@openbsd.org>
-rw-r--r--src/i830_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_video.c b/src/i830_video.c
index bbabce4c..7aa16bb6 100644
--- a/src/i830_video.c
+++ b/src/i830_video.c
@@ -574,7 +574,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,