summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2013-02-27 05:35:13 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2013-06-27 10:01:16 +0200
commitb89d208f25d0948fb9138865d971463e14f79271 (patch)
tree842f7cdc637096e8b2603be2a546de0351460306
parent68bf4e5f5ff2c68cce18fb6b7a64877fcb36045a (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.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c
index 7f7a3a23..89bfc532 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);