commit | 213da72d06ee9c411019ca93ed8e4f4b6f72e39b | [log] [tgz] |
---|---|---|
author | Andrey VOLKOV <andrey.volkov@munic.io> | Mon Jul 15 19:16:30 2024 +0200 |
committer | Maureen Helm <maureen.helm@analog.com> | Wed Aug 14 15:57:15 2024 -0500 |
tree | 54bb33b36673ff8d8c0c151e87122757f0007dae | |
parent | 98439c41660c2105affe8abe769bd833628fd5ed [diff] |
timer: cortex_m_systick: use direct interrupt handler instead of C-function The current driver implements the global defined "systick" interrupt callback "sys_clock_isr" as a standard C function with an argument. However, ARM's direct interrupt handlers do not have any arguments; they must be declared as "void handler(void)". Additionally, the direct handler should include some missing special header/footer. Fixes: #75693 Signed-off-by: Andrey VOLKOV <andrey.volkov@munic.io>