svn commit: r205126 - head/sys/dev/drm
Robert Noland
rnoland at FreeBSD.org
Sat Mar 13 18:14:51 UTC 2010
Author: rnoland
Date: Sat Mar 13 18:14:51 2010
New Revision: 205126
URL: http://svn.freebsd.org/changeset/base/205126
Log:
Fix build after typo.
Reported by: Sergey V. Dyatko <sergey.dyatko at gmail.com>
MFC after: 3 days
Modified:
head/sys/dev/drm/i915_drv.h
Modified: head/sys/dev/drm/i915_drv.h
==============================================================================
--- head/sys/dev/drm/i915_drv.h Sat Mar 13 18:06:17 2010 (r205125)
+++ head/sys/dev/drm/i915_drv.h Sat Mar 13 18:14:51 2010 (r205126)
@@ -664,7 +664,7 @@ extern int i915_wait_ring(struct drm_dev
#define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
(dev)->pci_device == 0x29B2 || \
(dev)->pci_device == 0x29D2 || \
- IS_IGD(DEV))
+ IS_IGD(dev))
#define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
More information about the svn-src-all
mailing list