From ba80c36708bd51b4c23ddf44daf6aa9ad5b3299d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20=C5=9Alusarz?= Date: Thu, 19 May 2022 17:08:43 +0200 Subject: [PATCH] intel/tools/aubinator: list all platforms in help message Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/tools/aubinator.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index 7baa2e65dfd..c4bce95e9f4 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tools/aubinator.c @@ -316,9 +316,10 @@ int main(int argc, char *argv[]) case 'g': { const int id = intel_device_name_to_pci_device_id(optarg); if (id < 0) { - fprintf(stderr, "can't parse gen: '%s', expected brw, g4x, ilk, " + fprintf(stderr, "can't parse gen: '%s', expected lpt, brw, g4x, ilk, " "snb, ivb, hsw, byt, bdw, chv, skl, bxt, kbl, " - "aml, glk, cfl, whl, cnl, icl", optarg); + "aml, glk, cfl, whl, cml, icl, ehl, jsl, tgl, " + "rkl, dg1, adl, sg1, rpl, dg2\n", optarg); exit(EXIT_FAILURE); } else { pci_id = id;