View | Details | Raw Unified | Return to bug 103135
Collapse All | Expand All

(-)intel_context.c (+2 lines)
Lines 96-101 Link Here
96
	 chipset = "Intel(R) 865G"; break;
96
	 chipset = "Intel(R) 865G"; break;
97
      case PCI_CHIP_I915_G:
97
      case PCI_CHIP_I915_G:
98
	 chipset = "Intel(R) 915G"; break;
98
	 chipset = "Intel(R) 915G"; break;
99
      case PCI_CHIP_I915_GM:
100
	 chipset = "Intel(R) 915GM"; break;
99
      default:
101
      default:
100
	 chipset = "Unknown Intel Chipset"; break;
102
	 chipset = "Unknown Intel Chipset"; break;
101
      }
103
      }
(-)intel_context.h (+1 lines)
Lines 411-416 Link Here
411
#define PCI_CHIP_I855_GM		0x3582
411
#define PCI_CHIP_I855_GM		0x3582
412
#define PCI_CHIP_I865_G			0x2572
412
#define PCI_CHIP_I865_G			0x2572
413
#define PCI_CHIP_I915_G			0x2582
413
#define PCI_CHIP_I915_G			0x2582
414
#define PCI_CHIP_I915_GM		0x2592
414
415
415
416
416
/* ================================================================
417
/* ================================================================
(-)intel_screen.c (+1 lines)
Lines 292-297 Link Here
292
				sharedContextPrivate );
292
				sharedContextPrivate );
293
293
294
   case PCI_CHIP_I915_G:
294
   case PCI_CHIP_I915_G:
295
   case PCI_CHIP_I915_GM:
295
      return i915CreateContext( mesaVis, driContextPriv, 
296
      return i915CreateContext( mesaVis, driContextPriv, 
296
			       sharedContextPrivate );
297
			       sharedContextPrivate );
297
 
298
 

Return to bug 103135