Skip to content

Commit 5448d92

Browse files
ColinIanKingavpatel
authored andcommitted
KVM: selftests: Fix spelling mistake "trigged" -> "triggered"
There are spelling mistakes in __GUEST_ASSERT messages. Fix them. Signed-off-by: Colin Ian King <[email protected]> Acked-by: Oliver Upton <[email protected]> Signed-off-by: Anup Patel <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 4cece76 commit 5448d92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/testing/selftests/kvm/aarch64/arch_timer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ static void guest_run_stage(struct test_vcpu_shared_data *shared_data,
136136
irq_iter = READ_ONCE(shared_data->nr_iter);
137137
__GUEST_ASSERT(config_iter + 1 == irq_iter,
138138
"config_iter + 1 = 0x%lx, irq_iter = 0x%lx.\n"
139-
" Guest timer interrupt was not trigged within the specified\n"
139+
" Guest timer interrupt was not triggered within the specified\n"
140140
" interval, try to increase the error margin by [-e] option.\n",
141141
config_iter + 1, irq_iter);
142142
}

tools/testing/selftests/kvm/riscv/arch_timer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void guest_run(struct test_vcpu_shared_data *shared_data)
6060
irq_iter = READ_ONCE(shared_data->nr_iter);
6161
__GUEST_ASSERT(config_iter + 1 == irq_iter,
6262
"config_iter + 1 = 0x%x, irq_iter = 0x%x.\n"
63-
" Guest timer interrupt was not trigged within the specified\n"
63+
" Guest timer interrupt was not triggered within the specified\n"
6464
" interval, try to increase the error margin by [-e] option.\n",
6565
config_iter + 1, irq_iter);
6666
}

0 commit comments

Comments
 (0)