diff options
author | Rodrigo Vivi <[email protected]> | 2018-08-30 14:32:57 -0700 |
---|---|---|
committer | Rodrigo Vivi <[email protected]> | 2018-08-31 13:57:41 -0700 |
commit | 886a048febcea2cd6e0e2cdaa2522bbf2b0f48ab (patch) | |
tree | cf06634bba218208cc5028382050713940044a87 /src/intel/tools | |
parent | 904c2a617d86944fbdc2c955f327aacd0b3df318 (diff) |
intel: aubinator: Adding missed platforms to the error message.
Many new platforms got added to gen_device_name_to_pci_device_id()
but the error message inside aubinator didn't reflected those
changes. So syncing on the same order to be sure that we are not
missing any now.
Cc: Anuj Phogat <[email protected]>
Cc: Matt Turner <[email protected]>
Cc: Jordan Justen <[email protected]>
Signed-off-by: Rodrigo Vivi <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/tools')
-rw-r--r-- | src/intel/tools/aubinator.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index c22d191f146..edd11fe0f50 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tools/aubinator.c @@ -280,8 +280,9 @@ int main(int argc, char *argv[]) case 'g': { const int id = gen_device_name_to_pci_device_id(optarg); if (id < 0) { - fprintf(stderr, "can't parse gen: '%s', expected ivb, byt, hsw, " - "bdw, chv, skl, kbl or bxt\n", optarg); + fprintf(stderr, "can't parse gen: '%s', expected brw, g4x, ilk, " + "snb, ivb, hsw, byt, bdw, chv, skl, bxt, kbl, " + "glk, cfl, cnl, icl", optarg); exit(EXIT_FAILURE); } else { pci_id = id; |