selftests/powerpc: Avoid GCC 12 uninitialised variable warning
authorMichael Ellerman <mpe@ellerman.id.au>
Mon, 1 Aug 2022 08:48:34 +0000 (18:48 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 1 Aug 2022 12:21:18 +0000 (22:21 +1000)
commitff446cd76854d47f451a84c26bb70934ae2ec5a7
tree1249e564c78366f78a1483a5d38836837d656404
parentdf5d4b616ee76abc97e5bd348e22659c2b095b1c
selftests/powerpc: Avoid GCC 12 uninitialised variable warning

GCC 12 thinks that `actual` might be used uninitialised. It's not, the
use is guarded by `bad_mmcr2` which is only set to true at the same
point where `actual` is initialised.

  cycles_with_mmcr2_test.c: In function ‘cycles_with_mmcr2’:
  cycles_with_mmcr2_test.c:81:17: error: ‘actual’ may be used uninitialized [-Werror=maybe-uninitialized]
     81 |                 printf("Bad MMCR2 value seen is 0x%lx\n", actual);

Silence the warning by initialising `actual` to zero.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220801113746.802046-1-mpe@ellerman.id.au
tools/testing/selftests/powerpc/pmu/ebb/cycles_with_mmcr2_test.c