tools/power/x86/intel-speed-select: Fix perf-profile command output
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Wed, 18 Sep 2019 00:52:37 +0000 (17:52 -0700)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 19 Sep 2019 11:51:29 +0000 (14:51 +0300)
commitb3abfd778bf1dbdd96f70bd7d00671d027f67c62
tree5980f49bd2567ea2e69f5e20e6bf012c128c258c
parent188afed9db7db3aefc8c9c33150be2f8f398da9a
tools/power/x86/intel-speed-select: Fix perf-profile command output

commit "c016ae8f9fa04d361efc8629de49ad3af12b5262
"tools/power/x86/intel-speed-select: Output success/failed for command
output" introduced a regression in perf-profile outputs. With this
the result field is changed to string interpreting every non zero
value as errors. But these commands display on zero (>0) result.
For example before this commit the display was:

package-1
  die-0
    cpu-14
        get-config-levels:4

Here the get-config-levels is interpreted as error and displayed
as error with the above commit:

package-1
  die-0
    cpu-14
        get-config-levels:failed(error 4)

Fix this issue by not using isst_display_result() to display such results,
but define a new function which formats this data and prints.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
tools/power/x86/intel-speed-select/isst-config.c
tools/power/x86/intel-speed-select/isst-display.c
tools/power/x86/intel-speed-select/isst.h