summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@googlemail.com>2013-01-24 14:42:54 +0100
committerDavid Herrmann <dh.herrmann@googlemail.com>2013-01-24 14:42:54 +0100
commitf289349ef9a0a14566c50d666e698c4c97912e76 (patch)
treefa2befe8545be7dad0d52cc11e4a9bd937ba42bd /tests
parentae25adc34fd835569e28b713408e0fea1bfdd3d1 (diff)
uterm: rename drm-dumb backend into drm2d module
This moves all the drm-dumb code into a new module that is now called drm2d (which was already used internally before). No conceptual changes, just renames and moves. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_output.c b/tests/test_output.c
index ff523cf..2c5ce86 100644
--- a/tests/test_output.c
+++ b/tests/test_output.c
@@ -218,9 +218,9 @@ int main(int argc, char **argv)
ret = uterm_video_new(&video, eloop, node, mode);
if (ret) {
if (mode == UTERM_VIDEO_DRM) {
- log_notice("cannot create drm device; trying dumb drm mode");
+ log_notice("cannot create drm device; trying drm2d mode");
ret = uterm_video_new(&video, eloop, node,
- UTERM_VIDEO_DUMB);
+ UTERM_VIDEO_DRM2D);
if (ret)
goto err_exit;
} else {