Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c9ed4486 authored by Ma Ling's avatar Ma Ling Committed by Eric Anholt
Browse files

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



It fixed bug #21659

Signed-off-by: default avatarMa Ling <ling.ma@intel.com>
[anholt: hand-applied because git-am is too picky]
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent e92597cf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -786,7 +786,8 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
		       (dev)->pci_device == 0x2E22 || \
		       (dev)->pci_device == 0x2E32)

#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02 || \
			(dev)->pci_device == 0x2A12)

#define IS_GM45(dev) ((dev)->pci_device == 0x2A42)