diff options
Diffstat (limited to 'linux-core/drm_init.c')
-rw-r--r-- | linux-core/drm_init.c | 5 |
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"); |