remove 'si_init_perfcounters: max_sh_per_se' warning

In drm from linux >= 5.9 renoir no longer uses the gpu info firmware and
some reported hardware information changes.

'drm/amdgpu: use IP discovery table for renoir'
c1cf79ca5ced46ea6a7843cbe98836e4d51c6c52

Remove warning which is known to be harmless
https://gitlab.freedesktop.org/drm/amd/-/issues/1332
and was removed with mesa 20.2 in
'radeonsi/gfx10: implement most performance counters'
38a4b861459b02401d3ff71670218506e7acf019
pull/1/head
jsg 2021-05-25 05:53:44 +00:00
parent 82149d4bfb
commit d494b905d0
1 changed files with 0 additions and 7 deletions

View File

@ -1301,13 +1301,6 @@ void si_init_perfcounters(struct si_screen *screen)
return; /* not implemented */
}
if (screen->info.max_sh_per_se != 1) {
/* This should not happen on non-GFX6 chips. */
fprintf(stderr, "si_init_perfcounters: max_sh_per_se = %d not "
"supported (inaccurate performance counters)\n",
screen->info.max_sh_per_se);
}
screen->perfcounters = pc = CALLOC_STRUCT(si_perfcounters);
if (!pc)
return;