From dd83f39f034756e7eb8e002dbfb0047f88aa79e4 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Sat, 14 Aug 2004 00:46:15 +0000 Subject: Add a "dev" argument to DRIVER_CTX_[CD]TOR. This will be used in an upcoming commit for the SiS driver. --- linux-core/drm_context.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linux-core') diff --git a/linux-core/drm_context.c b/linux-core/drm_context.c index 8795198a..0cf34549 100644 --- a/linux-core/drm_context.c +++ b/linux-core/drm_context.c @@ -422,7 +422,7 @@ int DRM(addctx)( struct inode *inode, struct file *filp, } #ifdef DRIVER_CTX_CTOR if ( ctx.handle != DRM_KERNEL_CONTEXT ) - DRIVER_CTX_CTOR(ctx.handle); /* XXX: also pass dev ? */ + DRIVER_CTX_CTOR(dev, ctx.handle); #endif ctx_entry = DRM(alloc)( sizeof(*ctx_entry), DRM_MEM_CTXLIST ); if ( !ctx_entry ) { @@ -556,7 +556,7 @@ int DRM(rmctx)( struct inode *inode, struct file *filp, } if ( ctx.handle != DRM_KERNEL_CONTEXT ) { #ifdef DRIVER_CTX_DTOR - DRIVER_CTX_DTOR(ctx.handle); /* XXX: also pass dev ? */ + DRIVER_CTX_DTOR(dev, ctx.handle); #endif DRM(ctxbitmap_free)( dev, ctx.handle ); } -- cgit v1.2.3