From f9698aedaebe9b6edd4a13670cd1bfcb35883136 Mon Sep 17 00:00:00 2001 From: HiFiPhile Date: Mon, 22 Jun 2026 21:23:49 +0200 Subject: osal: add missing osal_spin_deinit() Signed-off-by: HiFiPhile --- src/osal/osal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/osal/osal.h') diff --git a/src/osal/osal.h b/src/osal/osal.h index a33280425..3fa1ff6bf 100644 --- a/src/osal/osal.h +++ b/src/osal/osal.h @@ -76,7 +76,8 @@ typedef void (*osal_task_func_t)( void * ); // Should be implemented as static inline function in osal_port.h header /* void osal_spin_init(osal_spinlock_t *ctx); - void osal_spin_lock(osal_spinlock_t *ctx, bool in_isr) + void osal_spin_deinit(osal_spinlock_t *ctx); + void osal_spin_lock(osal_spinlock_t *ctx, bool in_isr); void osal_spin_unlock(osal_spinlock_t *ctx, bool in_isr); osal_semaphore_t osal_semaphore_create(osal_semaphore_def_t* semdef); -- cgit v1.3.1