Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/powerpc/pmu: fix spelling mistake "mis-match" -> "mismatch"

There are a few spelling mistakes in error messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220319232025.22067-1-colin.i.king@gmail.com

authored by

Colin Ian King and committed by
Michael Ellerman
7801cb1d 26b78c81

+3 -3
+3 -3
tools/testing/selftests/powerpc/security/spectre_v2.c
··· 198 198 return 4; 199 199 } 200 200 printf("Branch misses > 15%% unexpected in this configuration!\n"); 201 - printf("Possible mis-match between reported & actual mitigation\n"); 201 + printf("Possible mismatch between reported & actual mitigation\n"); 202 202 203 203 return 1; 204 204 } ··· 207 207 // This seems to affect userspace branch prediction a bit? 208 208 if (miss_percent > 25) { 209 209 printf("Branch misses > 25%% unexpected in this configuration!\n"); 210 - printf("Possible mis-match between reported & actual mitigation\n"); 210 + printf("Possible mismatch between reported & actual mitigation\n"); 211 211 return 1; 212 212 } 213 213 break; 214 214 case COUNT_CACHE_DISABLED: 215 215 if (miss_percent < 95) { 216 216 printf("Branch misses < 95%% unexpected in this configuration!\n"); 217 - printf("Possible mis-match between reported & actual mitigation\n"); 217 + printf("Possible mismatch between reported & actual mitigation\n"); 218 218 return 1; 219 219 } 220 220 break;