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@xxxxxxxxx> --- tests/testdisplay.c | 14 ++++++++------ 1 file 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': -- 2.21.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx