diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-11-26 03:48:53 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-11-26 03:48:53 +0000 |
commit | 697d58feb01c02d6431026f13c9113805e1e668a (patch) | |
tree | ef2ba4e23dab7caadc93600cec0295931eba55ec /sys/dev/pci/drm | |
parent | 6f581aba60a8f680856da3c901973b3dab492ec5 (diff) |
claim to support relaxed fencing
ok kettenis@
Diffstat (limited to 'sys/dev/pci/drm')
-rw-r--r-- | sys/dev/pci/drm/i915/i915_dma.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/pci/drm/i915/i915_dma.c b/sys/dev/pci/drm/i915/i915_dma.c index b202a0a09ae..55fb710e32c 100644 --- a/sys/dev/pci/drm/i915/i915_dma.c +++ b/sys/dev/pci/drm/i915/i915_dma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i915_dma.c,v 1.11 2013/11/19 19:14:09 kettenis Exp $ */ +/* $OpenBSD: i915_dma.c,v 1.12 2013/11/26 03:48:52 jsg Exp $ */ /* i915_dma.c -- DMA support for the I915 -*- linux-c -*- */ /* @@ -105,11 +105,7 @@ i915_getparam(struct drm_device *dev, void *data, struct drm_file *file_priv) value = intel_ring_initialized(&dev_priv->ring[BCS]); break; case I915_PARAM_HAS_RELAXED_FENCING: -#ifdef notyet value = 1; -#else - return -EINVAL; -#endif break; case I915_PARAM_HAS_COHERENT_RINGS: value = 1; |