aboutsummaryrefslogtreecommitdiff
path: root/linux/drm_context.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-04-22 11:31:55 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-04-22 11:31:55 +0000
commita1780925fb461c736bae7e51de0d3a1e909548f2 (patch)
treedbe412015c1e5fa32a8e2d44fade26c9bf0e6407 /linux/drm_context.h
parent056762a9104997569b09416c35d9a0bfef175e1f (diff)
Move a chunk of gamma-specific code out of drm_dma.h. Remove unused
'DRM_FLAG_NOCTX' option.
Diffstat (limited to 'linux/drm_context.h')
-rw-r--r--linux/drm_context.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/linux/drm_context.h b/linux/drm_context.h
index 646b2236..b446956c 100644
--- a/linux/drm_context.h
+++ b/linux/drm_context.h
@@ -36,6 +36,11 @@
#define __NO_VERSION__
#include "drmP.h"
+#if !__HAVE_CTX_BITMAP
+#error "__HAVE_CTX_BITMAP must be defined"
+#endif
+
+
/* ================================================================
* Context bitmap support
*/
@@ -235,10 +240,6 @@ int DRM(context_switch)( drm_device_t *dev, int old, int new )
return 0;
}
- if ( DRM(flags) & DRM_FLAG_NOCTX ) {
- DRM(context_switch_complete)( dev, new );
- }
-
return 0;
}