OSDN Git Service

modetest: Remove the -m argument
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Wed, 27 Feb 2013 04:35:13 +0000 (05:35 +0100)
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 5 Aug 2013 12:21:44 +0000 (14:21 +0200)
The argument isn't used, remove it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
tests/modetest/modetest.c

index 8d94630..1f241c7 100644 (file)
@@ -96,7 +96,7 @@ struct resources {
 };
 
 struct resources *resources;
-int fd, modes;
+int fd;
 
 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
 
@@ -1138,7 +1138,6 @@ static void usage(char *name)
        fprintf(stderr, "\t-c\tlist connectors\n");
        fprintf(stderr, "\t-e\tlist encoders\n");
        fprintf(stderr, "\t-f\tlist framebuffers\n");
-       fprintf(stderr, "\t-m\tlist modes\n");
        fprintf(stderr, "\t-p\tlist CRTCs and planes (pipes)\n");
 
        fprintf(stderr, "\n Test options:\n\n");
@@ -1178,7 +1177,7 @@ static int page_flipping_supported(void)
 #endif
 }
 
-static char optstr[] = "cdefM:mP:ps:vw:";
+static char optstr[] = "cdefM:P:ps:vw:";
 
 int main(int argc, char **argv)
 {
@@ -1218,9 +1217,6 @@ int main(int argc, char **argv)
                        /* Preserve the default behaviour of dumping all information. */
                        args--;
                        break;
-               case 'm':
-                       modes = 1;
-                       break;
                case 'P':
                        plane_args = realloc(plane_args,
                                             (plane_count + 1) * sizeof *plane_args);
@@ -1274,7 +1270,7 @@ int main(int argc, char **argv)
        }
 
        if (!args)
-               encoders = connectors = crtcs = planes = modes = framebuffers = 1;
+               encoders = connectors = crtcs = planes = framebuffers = 1;
 
        if (module) {
                fd = drmOpen(module, NULL);