diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-07-03 01:03:14 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-07-21 11:03:29 +0800 |
commit | 483cba52ef62565fff3b21eb8ca2b00ab3075fa6 (patch) | |
tree | e5b8cd740e76966a80f37ba9bde8a4a36f07f499 /src/i965_video.c | |
parent | cb4c1fa7499d82beb01566aaf1f323a03ebc1ae4 (diff) |
Fix official name for GM45 chipset
(cherry picked from commit a34a4e3f6420e2b06bbdaa124fe0ccb1bc6a0bd9)
Diffstat (limited to 'src/i965_video.c')
-rw-r--r-- | src/i965_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i965_video.c b/src/i965_video.c index 4572e137..4c79259b 100644 --- a/src/i965_video.c +++ b/src/i965_video.c @@ -584,7 +584,7 @@ I965DisplayVideoTextured(ScrnInfoPtr pScrn, I830PortPrivPtr pPriv, int id, { BEGIN_BATCH(12); /* Match Mesa driver setup */ - if (IS_IGD_GM(pI830) || IS_G4X(pI830)) + if (IS_GM45(pI830) || IS_G4X(pI830)) OUT_BATCH(NEW_PIPELINE_SELECT | PIPELINE_SELECT_3D); else OUT_BATCH(BRW_PIPELINE_SELECT | PIPELINE_SELECT_3D); |