diff options
author | Eric Anholt <eric@anholt.net> | 2008-05-15 11:21:11 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-05-15 18:45:23 -0700 |
commit | 7dced2f33a952ad12aafb7a3e34747156020a3ae (patch) | |
tree | 8d42bf73b92ddf18099eaf636c786f8bd6ca3574 /linux-core/i915_drv.c | |
parent | 3ab152da66f6c7bcc68a13efcf4a62800354f13b (diff) |
[gem] Hold dev->struct_mutex to protect structure data.
Diffstat (limited to 'linux-core/i915_drv.c')
-rw-r--r-- | linux-core/i915_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/i915_drv.c b/linux-core/i915_drv.c index cc47ed64..a50ee53c 100644 --- a/linux-core/i915_drv.c +++ b/linux-core/i915_drv.c @@ -588,7 +588,7 @@ static struct drm_driver driver = { .ioctls = i915_ioctls, .gem_init_object = i915_gem_init_object, .gem_free_object = i915_gem_free_object, - .gem_set_domain = i915_gem_set_domain_ioctl, + .gem_set_domain = i915_gem_set_domain, .gem_flush_pwrite = i915_gem_flush_pwrite, .fops = { .owner = THIS_MODULE, |