summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2019-06-05 10:44:49 -0700
committerLucas De Marchi <lucas.demarchi@intel.com>2019-06-06 09:48:47 -0700
commit6cf57293a390beddd21985580efa28beec5fc798 (patch)
tree2a97e2dec716be7222e4584685e60afc07af3c92
parent94a28f391f77f676ab5d412c17d068f970dd4f78 (diff)
testdisplay: use first available option values
Now that core options are set to 500 and above, start from the lowest values without causing problems with conflicts. This also rename the constants to follow the names from the core. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com> Acked-by: Antonio Argenziano <antonio.argenziano@intel.com>
-rw-r--r--tests/testdisplay.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/testdisplay.c b/tests/testdisplay.c
index b4f0d45f..32590547 100644
--- a/tests/testdisplay.c
+++ b/tests/testdisplay.c
@@ -69,8 +69,10 @@
#include <stdlib.h>
#include <signal.h>
-#define Yb_OPT 5
-#define Yf_OPT 6
+enum {
+ OPT_YB,
+ OPT_YF,
+};
static int tio_fd;
struct termios saved_tio;
@@ -573,8 +575,8 @@ static void set_termio_mode(void)
static char optstr[] = "3iaf:s:d:p:mrto:j:y";
static struct option long_opts[] = {
- {"yb", 0, 0, Yb_OPT},
- {"yf", 0, 0, Yf_OPT},
+ {"yb", 0, 0, OPT_YB},
+ {"yf", 0, 0, OPT_YF},
{ 0, 0, 0, 0 }
};
@@ -648,10 +650,10 @@ static int opt_handler(int opt, int opt_index, void *data)
tiling = LOCAL_I915_FORMAT_MOD_X_TILED;
break;
case 'y':
- case Yb_OPT:
+ case OPT_YB:
tiling = LOCAL_I915_FORMAT_MOD_Y_TILED;
break;
- case Yf_OPT:
+ case OPT_YF:
tiling = LOCAL_I915_FORMAT_MOD_Yf_TILED;
break;
case 'r':