Commit 8ac135d7 authored by Andy Ross's avatar Andy Ross Committed by Carles Cufi
Browse files

tests/kernel/smp: Correct parameter name



The k_sys_fatal_error_handler() function is declared in zephyr/fatal.h
with a name of "esf" for the second parameter, not "pEsf".  For
unknown reasons, this is showing up in CI as a documentation
generation failure pointing at the (correct) header.

Still, no reason not to synchronize.

Signed-off-by: default avatarAndy Ross <andyross@google.com>
parent 358355a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -659,7 +659,7 @@ ZTEST(smp, test_smp_ipi)
}
#endif

void k_sys_fatal_error_handler(unsigned int reason, const z_arch_esf_t *pEsf)
void k_sys_fatal_error_handler(unsigned int reason, const z_arch_esf_t *esf)
{
	static int trigger;