Date: Sat, 13 Mar 2010 18:14:51 +0000 (UTC) From: Robert Noland <rnoland@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r205126 - head/sys/dev/drm Message-ID: <201003131814.o2DIEpgX095185@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003131814.o2DIEpgX095185>