drm/i915: Include 965GME pci ID in IS_I965GM(dev) to match UMS.

It fixed bug #21659

Signed-off-by: Ma Ling <ling.ma@intel.com>
[anholt: hand-applied because git-am is too picky]
Signed-off-by: Eric Anholt <eric@anholt.net>

authored by Ma Ling and committed by Eric Anholt c9ed4486 e92597cf

+2 -1
+2 -1
drivers/gpu/drm/i915/i915_drv.h
··· 786 786 (dev)->pci_device == 0x2E22 || \ 787 787 (dev)->pci_device == 0x2E32) 788 788 789 - #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02) 789 + #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02 || \ 790 + (dev)->pci_device == 0x2A12) 790 791 791 792 #define IS_GM45(dev) ((dev)->pci_device == 0x2A42) 792 793