diff options
author | Dave Airlie <airlied@linux.ie> | 2004-09-02 12:33:03 +0000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2004-09-02 12:33:03 +0000 |
commit | 838bb7af71b5730de55549a74c8198215c1f1475 (patch) | |
tree | 6865baaf23a121567f02695cdf231c1468752cb3 /linux | |
parent | a070d15b530da87b835f4a439886eea3c606ac2f (diff) |
oops called ctor instead of dtor.. found this on the kernel merge
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drm_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drm_context.h b/linux/drm_context.h index c9ccaa01..e1cb95c6 100644 --- a/linux/drm_context.h +++ b/linux/drm_context.h @@ -552,8 +552,8 @@ int DRM(rmctx)( struct inode *inode, struct file *filp, priv->remove_auth_on_close = 1; } if ( ctx.handle != DRM_KERNEL_CONTEXT ) { - if (dev->fn_tbl.context_ctor) - dev->fn_tbl.context_ctor(dev, ctx.handle); + if (dev->fn_tbl.context_dtor) + dev->fn_tbl.context_dtor(dev, ctx.handle); DRM(ctxbitmap_free)( dev, ctx.handle ); } |