Add support for "--ppt-read" to fall in line with the way rest of the command line options are formatted. The old "--ppt_read" is still supported. Cc: Tom StDenis <tom.stdenis@xxxxxxx> Cc: Jinzhou.Su <Jinzhou.Su@xxxxxxx> Signed-off-by: Luben Tuikov <luben.tuikov@xxxxxxx> --- src/app/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/main.c b/src/app/main.c index 2f9d6aadd7ff46..62ea2f42145f60 100644 --- a/src/app/main.c +++ b/src/app/main.c @@ -848,7 +848,9 @@ int main(int argc, char **argv) umr_set_clock_performance(asic, "auto"); if (umr_check_clock_performance(asic, clockperformance, sizeof(clockperformance)) != 0) printf("power_dpm_force_performance_level: %s", clockperformance); - } else if (!strcmp(argv[i], "--ppt_read") || !strcmp(argv[i], "-pptr")) { + } else if (!strcmp(argv[i], "--ppt-read") || + !strcmp(argv[i], "--ppt_read") || + !strcmp(argv[i], "-pptr")) { if (!asic) asic = get_asic(); if (i + 1 < argc) { base-commit: decd91d8eae42d63eda4f6b7c97159b9cc343c26 -- 2.35.1.607.gf01e51a7cf