diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2013-01-24 16:42:03 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2013-01-24 16:42:03 +0100 |
commit | 0f206cc5b58685c4b4cb9e17374f6265b56cc038 (patch) | |
tree | 2e25fe1e915492c1624eaba425ee7440eaf3eeab /src/kmscon_conf.c | |
parent | f289349ef9a0a14566c50d666e698c4c97912e76 (diff) |
uterm: drm: rename to drm3d
This renames the video-drm backend to drm3d (which was already used
internally). This is a pure rename, the code-logic stays the same.
This also puts the drm3d backend into a module so we can more easily
load it during runtime.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'src/kmscon_conf.c')
-rw-r--r-- | src/kmscon_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kmscon_conf.c b/src/kmscon_conf.c index d0f98df..e3bd225 100644 --- a/src/kmscon_conf.c +++ b/src/kmscon_conf.c @@ -447,7 +447,7 @@ static int aftercheck_drm(struct conf_option *opt, int argc, char **argv, * enabled but will still correctly use fbdev devices so we can then * remove this check. */ if (conf->drm) { - if (!uterm_video_available(UTERM_VIDEO_DRM) && + if (!uterm_video_available(UTERM_VIDEO_DRM3D) && !uterm_video_available(UTERM_VIDEO_DRM2D)) { log_info("no DRM runtime support available; disabling --drm"); conf->drm = false; |