tests: util: Fixup util_open() parameter order
authorThierry Reding <treding@nvidia.com>
Tue, 5 Jan 2016 14:21:23 +0000 (15:21 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Tue, 26 Jan 2016 21:50:17 +0000 (21:50 +0000)
util_open() takes a device parameter, followed by a module parameter.
The existing tests used the drmOpen() function, which uses a different
ordering of the parameters, and the old ordering was accidentally kept
during the conversion.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
tests/modetest/modetest.c
tests/proptest/proptest.c
tests/vbltest/vbltest.c

index 22e3e81bd3cce0e6fae5009d9da3b98c54c3562b..f665240a53c57bd931d376283985c4ad1170472d 100644 (file)
@@ -1603,7 +1603,7 @@ int main(int argc, char **argv)
        if (!args)
                encoders = connectors = crtcs = planes = framebuffers = 1;
 
-       dev.fd = util_open(module, device);
+       dev.fd = util_open(device, module);
        if (dev.fd < 0)
                return -1;
 
index 24c634569f2f601e6d73521956bda66251306702..4bd08665461c7d07c43f9b1ddb5100919288f06b 100644 (file)
@@ -295,7 +295,7 @@ int main(int argc, char *argv[])
 
        args = argc - optind;
 
-       fd = util_open(module, device);
+       fd = util_open(device, module);
        if (fd < 0)
                return 1;
 
index 183332122978793a2554510a6ca9e5695bf5936a..4475b49b7b9a281274c649d768a5e0318223e337 100644 (file)
@@ -120,7 +120,7 @@ int main(int argc, char **argv)
                }
        }
 
-       fd = util_open(module, device);
+       fd = util_open(device, module);
        if (fd < 0)
                return 1;