OSDN Git Service

tests: add support for imx-drm
authorPhilipp Zabel <p.zabel@pengutronix.de>
Fri, 12 Dec 2014 13:12:29 +0000 (14:12 +0100)
committerLucas Stach <l.stach@pengutronix.de>
Wed, 25 Feb 2015 16:51:22 +0000 (17:51 +0100)
Since imx-drm has graduated from staging it seems to be a good idea to
recognize it by default in the libdrm tests.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
tests/kmstest/main.c
tests/modetest/modetest.c
tests/vbltest/vbltest.c

index 449d75f..2c87b1c 100644 (file)
@@ -62,6 +62,7 @@ char *drivers[] = {
        "nouveau",
        "vmwgfx",
        "exynos",
+       "imx-drm",
        NULL
 };
 
index 4b9cf2f..425e528 100644 (file)
@@ -1453,7 +1453,7 @@ int main(int argc, char **argv)
        int drop_master = 0;
        int test_vsync = 0;
        int test_cursor = 0;
-       const char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "omapdrm", "exynos", "tilcdc", "msm", "sti", "tegra" };
+       const char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "omapdrm", "exynos", "tilcdc", "msm", "sti", "tegra", "imx-drm" };
        char *device = NULL;
        char *module = NULL;
        unsigned int i;
index 6e13c57..916d494 100644 (file)
@@ -106,7 +106,7 @@ int main(int argc, char **argv)
 {
        unsigned i;
        int c, fd, ret;
-       char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "exynos", "omapdrm", "tilcdc", "msm", "tegra" };
+       char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "exynos", "omapdrm", "tilcdc", "msm", "tegra", "imx-drm" };
        drmVBlank vbl;
        drmEventContext evctx;
        struct vbl_info handler_info;