The IS_945 case was left to fall through to the 830 case, along with the
not-recognized-at-all case, making that dead code.
intelScreenPrivate *intelScreen = (intelScreenPrivate *) sPriv->private;
#ifdef I915
- if (IS_915(intelScreen->deviceID)) {
- return i915CreateContext(mesaVis, driContextPriv,
+ if (IS_9XX(intelScreen->deviceID)) {
+ if (!IS_965(intelScreen->deviceID)) {
+ return i915CreateContext(mesaVis, driContextPriv,
sharedContextPrivate);
+ }
} else {
return i830CreateContext(mesaVis, driContextPriv, sharedContextPrivate);
}