diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2013-02-27 05:35:13 +0100 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2013-08-05 14:21:44 +0200 |
commit | dab3c80203e562cfdbe33e7d1627c9dde2f5a7de (patch) | |
tree | f99fc13220ed5293c9df65cfb4ce75a6db969df4 | |
parent | 581c7cf86a96a81e76288c8abca03c7f29eac3af (diff) |
modetest: Remove the -m argument
The argument isn't used, remove it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | tests/modetest/modetest.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c index 8d946303..1f241c76 100644 --- a/tests/modetest/modetest.c +++ b/tests/modetest/modetest.c @@ -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); |