test/dri2: Use the right device node
authorChris Wilson <chris@chris-wilson.co.uk>
Wed, 23 Jul 2014 12:45:27 +0000 (13:45 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Wed, 23 Jul 2014 12:55:39 +0000 (13:55 +0100)
Use the device node as instructed by Xorg.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
test/dri2-race.c
test/dri2-swap.c
test/dri2-test.c

index 01b023a..8862c84 100644 (file)
@@ -28,7 +28,7 @@ static int dri2_open(Display *dpy)
 
        printf ("Connecting to %s driver on %s\n", driver, device);
 
-       fd = open("/dev/dri/card0", O_RDWR);
+       fd = open(device, O_RDWR);
        if (fd < 0)
                return -1;
 
index ba6b237..1bfb7d1 100644 (file)
@@ -28,7 +28,7 @@ static int dri2_open(Display *dpy)
 
        printf ("Connecting to %s driver on %s\n", driver, device);
 
-       fd = open("/dev/dri/card0", O_RDWR);
+       fd = open(device, O_RDWR);
        if (fd < 0)
                return -1;
 
index 51b3da9..dd4179f 100644 (file)
@@ -52,7 +52,7 @@ static int dri2_open(Display *dpy)
 
        printf ("Connecting to %s driver on %s\n", driver, device);
 
-       fd = open("/dev/dri/card0", O_RDWR);
+       fd = open(device, O_RDWR);
        if (fd < 0)
                return -1;