summaryrefslogtreecommitdiff
path: root/linux-core/drm_init.c
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-core/drm_init.c
parent056762a9104997569b09416c35d9a0bfef175e1f (diff)
Move a chunk of gamma-specific code out of drm_dma.h. Remove unused
'DRM_FLAG_NOCTX' option.
Diffstat (limited to 'linux-core/drm_init.c')
-rw-r--r--linux-core/drm_init.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/linux-core/drm_init.c b/linux-core/drm_init.c
index 2d6b6a3c..3aa4ad59 100644
--- a/linux-core/drm_init.c
+++ b/linux-core/drm_init.c
@@ -50,11 +50,6 @@ static void DRM(parse_option)(char *s)
for (c = s; *c && *c != ':'; c++); /* find : or \0 */
if (*c) r = c + 1; else r = NULL; /* remember remainder */
*c = '\0'; /* terminate */
- if (!strcmp(s, "noctx")) {
- DRM(flags) |= DRM_FLAG_NOCTX;
- DRM_INFO("Server-mediated context switching OFF\n");
- return;
- }
if (!strcmp(s, "debug")) {
DRM(flags) |= DRM_FLAG_DEBUG;
DRM_INFO("Debug messages ON\n");