summaryrefslogtreecommitdiff
path: root/linux/gamma_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'linux/gamma_context.h')
-rw-r--r--linux/gamma_context.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/linux/gamma_context.h b/linux/gamma_context.h
index f5d2993c..9e4b913f 100644
--- a/linux/gamma_context.h
+++ b/linux/gamma_context.h
@@ -173,12 +173,11 @@ int DRM(context_switch)(drm_device_t *dev, int old, int new)
return -EINVAL;
}
- if (DRM(flags) & DRM_FLAG_NOCTX) {
- DRM(context_switch_complete)(dev, new);
- } else {
- sprintf(buf, "C %d %d\n", old, new);
- DRM(write_string)(dev, buf);
- }
+ /* This causes the X server to wake up & do a bunch of hardware
+ * interaction to actually effect the context switch.
+ */
+ sprintf(buf, "C %d %d\n", old, new);
+ DRM(write_string)(dev, buf);
atomic_dec(&q->use_count);