diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-06-05 14:56:32 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-06-05 14:56:32 +0100 |
commit | 73167711226f430cc9ef4c27f267655d0edf4622 (patch) | |
tree | 5e1fba8ccc2c4df97ded3852b87ef30055eb9a88 /src/intel_module.c | |
parent | 0260c4ce32fa4d7ae8c6ee79d5488b0114e96251 (diff) |
sna: 915gm does not have 128-byte Y-tiling
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_module.c')
-rw-r--r-- | src/intel_module.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/intel_module.c b/src/intel_module.c index 9b1da491..3b8ab5e8 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -53,6 +53,9 @@ static const struct intel_device_info intel_i8xx_info = { static const struct intel_device_info intel_i915_info = { .gen = 30, }; +static const struct intel_device_info intel_i945_info = { + .gen = 31, +}; static const struct intel_device_info intel_g33_info = { .gen = 33, @@ -148,9 +151,9 @@ static const struct pci_id_match intel_device_match[] = { INTEL_DEVICE_MATCH (PCI_CHIP_I915_G, &intel_i915_info ), INTEL_DEVICE_MATCH (PCI_CHIP_E7221_G, &intel_i915_info ), INTEL_DEVICE_MATCH (PCI_CHIP_I915_GM, &intel_i915_info ), - INTEL_DEVICE_MATCH (PCI_CHIP_I945_G, &intel_i915_info ), - INTEL_DEVICE_MATCH (PCI_CHIP_I945_GM, &intel_i915_info ), - INTEL_DEVICE_MATCH (PCI_CHIP_I945_GME, &intel_i915_info ), + INTEL_DEVICE_MATCH (PCI_CHIP_I945_G, &intel_i945_info ), + INTEL_DEVICE_MATCH (PCI_CHIP_I945_GM, &intel_i945_info ), + INTEL_DEVICE_MATCH (PCI_CHIP_I945_GME, &intel_i945_info ), INTEL_DEVICE_MATCH (PCI_CHIP_PINEVIEW_M, &intel_g33_info ), INTEL_DEVICE_MATCH (PCI_CHIP_PINEVIEW_G, &intel_g33_info ), |