diff options
author | Dave Airlie <airlied@linux.ie> | 2007-09-12 23:50:38 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-09-25 16:17:17 +1000 |
commit | bb5516f4f47d16d5d59797fa170abd50d35377a7 (patch) | |
tree | df345be0efa382a0a1a76ffd12b4d6d1dd515e66 /linux-core/i915_fence.c | |
parent | 54df1b9ff3b79097fedd8ed7bf54aca30a660cbd (diff) |
drm/ttm: fixup fence class naming and interfaces
This is some code for nouveau that Ben Skeggs worked on, and also
fixes the naming (having class in a system header file == C++ keyword == bad plan)
Diffstat (limited to 'linux-core/i915_fence.c')
-rw-r--r-- | linux-core/i915_fence.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/i915_fence.c b/linux-core/i915_fence.c index 6f0de2ca..89830333 100644 --- a/linux-core/i915_fence.c +++ b/linux-core/i915_fence.c @@ -42,7 +42,7 @@ static void i915_perform_flush(struct drm_device * dev) { drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; struct drm_fence_manager *fm = &dev->fm; - struct drm_fence_class_manager *fc = &fm->class[0]; + struct drm_fence_class_manager *fc = &fm->fence_class[0]; struct drm_fence_driver *driver = dev->driver->fence_driver; uint32_t flush_flags = 0; uint32_t flush_sequence = 0; |